From ab2a7b33acd16c3cca44fe32ee264bb57a7f6225 Mon Sep 17 00:00:00 2001 From: ComputelessComputer <63365510+ComputelessComputer@users.noreply.github.com> Date: Thu, 25 Jun 2026 13:45:52 +0900 Subject: [PATCH 1/2] Simplify on-device STT labels Shows local transcription models as On device, renames mode badges to Live and After recording, and keeps the full model name available on hover. --- .../src/settings/ai/stt/model-icon.tsx | 7 +++++- apps/desktop/src/settings/ai/stt/select.tsx | 16 +++++++++--- .../src/settings/ai/stt/shared.test.ts | 25 +++++++++++++++++++ apps/desktop/src/settings/ai/stt/shared.tsx | 22 ++++++++++++++++ 4 files changed, 65 insertions(+), 5 deletions(-) create mode 100644 apps/desktop/src/settings/ai/stt/shared.test.ts diff --git a/apps/desktop/src/settings/ai/stt/model-icon.tsx b/apps/desktop/src/settings/ai/stt/model-icon.tsx index 7cf43c1f71..9cac58153f 100644 --- a/apps/desktop/src/settings/ai/stt/model-icon.tsx +++ b/apps/desktop/src/settings/ai/stt/model-icon.tsx @@ -116,18 +116,23 @@ export function getLocalModelBackendBadge(model: string): ModelIconSpec | null { export function LocalModelLabel({ model, label, + title, className, labelClassName, }: { model: string; label: string; + title?: string; className?: string; labelClassName?: string; }) { const icon = getLocalModelIcon(model); return ( -
+
{icon?.imageSrc ? ( d.model === model.id); const isDownloading = !!downloadInfo; - const label = model.displayName ?? displayModelId(model.id); + const label = displayModelLabel(model.id, model.displayName); + const title = displayModelTitle(model.id, model.displayName); const sizeLabel = formatModelSize(model.sizeBytes); const showLocalActions = model.isDownloaded && isLocalModelId(model.id); const isDeprecated = model.isDeprecated === true; @@ -557,6 +559,7 @@ function ModelSelectItem({
@@ -651,7 +654,8 @@ function ModelSelectedValue({ model }: { model: ModelEntry }) {
@@ -674,7 +678,11 @@ function ModelModeBadge({ mode }: { mode?: ModelEntry["mode"] }) { : "bg-muted text-muted-foreground", ])} > - {mode === "realtime" ? Realtime : Batch} + {mode === "realtime" ? ( + Live + ) : ( + After recording + )} ); } diff --git a/apps/desktop/src/settings/ai/stt/shared.test.ts b/apps/desktop/src/settings/ai/stt/shared.test.ts new file mode 100644 index 0000000000..4a8bbf5520 --- /dev/null +++ b/apps/desktop/src/settings/ai/stt/shared.test.ts @@ -0,0 +1,25 @@ +import { describe, expect, test } from "vitest"; + +import { displayModelLabel, displayModelTitle } from "./shared"; + +describe("STT model display labels", () => { + test("keeps cloud model product-facing", () => { + expect(displayModelLabel("cloud")).toBe("Pro (Cloud)"); + expect(displayModelTitle("cloud")).toBeUndefined(); + }); + + test("collapses local model names to on-device labels", () => { + expect( + displayModelLabel( + "soniqo-parakeet-streaming", + "Soniqo Parakeet Streaming", + ), + ).toBe("On device"); + expect( + displayModelTitle( + "soniqo-parakeet-streaming", + "Soniqo Parakeet Streaming", + ), + ).toBe("Soniqo Parakeet Streaming"); + }); +}); diff --git a/apps/desktop/src/settings/ai/stt/shared.tsx b/apps/desktop/src/settings/ai/stt/shared.tsx index df80f13e3e..f26320521f 100644 --- a/apps/desktop/src/settings/ai/stt/shared.tsx +++ b/apps/desktop/src/settings/ai/stt/shared.tsx @@ -126,6 +126,28 @@ export const displayModelId = (model: string) => { return model; }; +function isOnDeviceModelId(model: string) { + return ( + model.startsWith("soniqo-") || + model.startsWith("am-") || + model.startsWith("Quantized") + ); +} + +export function displayModelLabel(model: string, displayName?: string) { + if (isOnDeviceModelId(model)) { + return "On device"; + } + + return displayName ?? displayModelId(model); +} + +export function displayModelTitle(model: string, displayName?: string) { + const title = displayName ?? displayModelId(model); + + return displayModelLabel(model, displayName) === title ? undefined : title; +} + export function formatModelSize(sizeBytes?: number | null) { if (!sizeBytes) { return null; From bc9e9be04536e88fde11ca1de34bded2f1b301f7 Mon Sep 17 00:00:00 2001 From: ComputelessComputer <63365510+ComputelessComputer@users.noreply.github.com> Date: Thu, 25 Jun 2026 14:13:43 +0900 Subject: [PATCH 2/2] Explain STT mode badges Add hover tooltips for batch/live transcription chips and restyle Batch only as the same rectangular mode badge shape. Update STT tooltip i18n catalogs Refresh Lingui locale artifacts for the STT mode badge tooltip copy. --- apps/desktop/src/i18n/locales/af/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/af/messages.ts | 2 +- apps/desktop/src/i18n/locales/am/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/am/messages.ts | 2 +- apps/desktop/src/i18n/locales/ar/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ar/messages.ts | 2 +- apps/desktop/src/i18n/locales/as/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/as/messages.ts | 2 +- apps/desktop/src/i18n/locales/az/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/az/messages.ts | 2 +- apps/desktop/src/i18n/locales/ba/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ba/messages.ts | 2 +- apps/desktop/src/i18n/locales/be/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/be/messages.ts | 2 +- apps/desktop/src/i18n/locales/bg/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/bg/messages.ts | 2 +- apps/desktop/src/i18n/locales/bn/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/bn/messages.ts | 2 +- apps/desktop/src/i18n/locales/bo/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/bo/messages.ts | 2 +- apps/desktop/src/i18n/locales/br/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/br/messages.ts | 2 +- apps/desktop/src/i18n/locales/bs/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/bs/messages.ts | 2 +- apps/desktop/src/i18n/locales/ca/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ca/messages.ts | 2 +- apps/desktop/src/i18n/locales/cs/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/cs/messages.ts | 2 +- apps/desktop/src/i18n/locales/cy/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/cy/messages.ts | 2 +- apps/desktop/src/i18n/locales/da/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/da/messages.ts | 2 +- apps/desktop/src/i18n/locales/de/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/de/messages.ts | 2 +- apps/desktop/src/i18n/locales/el/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/el/messages.ts | 2 +- apps/desktop/src/i18n/locales/en/messages.po | 61 ++++++++++-------- apps/desktop/src/i18n/locales/en/messages.ts | 2 +- apps/desktop/src/i18n/locales/es/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/es/messages.ts | 2 +- apps/desktop/src/i18n/locales/et/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/et/messages.ts | 2 +- apps/desktop/src/i18n/locales/eu/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/eu/messages.ts | 2 +- apps/desktop/src/i18n/locales/fa/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/fa/messages.ts | 2 +- apps/desktop/src/i18n/locales/ff/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ff/messages.ts | 2 +- apps/desktop/src/i18n/locales/fi/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/fi/messages.ts | 2 +- apps/desktop/src/i18n/locales/fo/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/fo/messages.ts | 2 +- apps/desktop/src/i18n/locales/fr/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/fr/messages.ts | 2 +- apps/desktop/src/i18n/locales/ga/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ga/messages.ts | 2 +- apps/desktop/src/i18n/locales/gl/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/gl/messages.ts | 2 +- apps/desktop/src/i18n/locales/gu/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/gu/messages.ts | 2 +- apps/desktop/src/i18n/locales/ha/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ha/messages.ts | 2 +- apps/desktop/src/i18n/locales/he/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/he/messages.ts | 2 +- apps/desktop/src/i18n/locales/hi/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/hi/messages.ts | 2 +- apps/desktop/src/i18n/locales/hr/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/hr/messages.ts | 2 +- apps/desktop/src/i18n/locales/ht/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ht/messages.ts | 2 +- apps/desktop/src/i18n/locales/hu/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/hu/messages.ts | 2 +- apps/desktop/src/i18n/locales/hy/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/hy/messages.ts | 2 +- apps/desktop/src/i18n/locales/id/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/id/messages.ts | 2 +- apps/desktop/src/i18n/locales/ig/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ig/messages.ts | 2 +- apps/desktop/src/i18n/locales/is/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/is/messages.ts | 2 +- apps/desktop/src/i18n/locales/it/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/it/messages.ts | 2 +- apps/desktop/src/i18n/locales/ja/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ja/messages.ts | 2 +- apps/desktop/src/i18n/locales/jv/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/jv/messages.ts | 2 +- apps/desktop/src/i18n/locales/ka/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ka/messages.ts | 2 +- apps/desktop/src/i18n/locales/kk/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/kk/messages.ts | 2 +- apps/desktop/src/i18n/locales/km/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/km/messages.ts | 2 +- apps/desktop/src/i18n/locales/kn/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/kn/messages.ts | 2 +- apps/desktop/src/i18n/locales/ko/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ko/messages.ts | 2 +- apps/desktop/src/i18n/locales/ku/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ku/messages.ts | 2 +- apps/desktop/src/i18n/locales/ky/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ky/messages.ts | 2 +- apps/desktop/src/i18n/locales/la/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/la/messages.ts | 2 +- apps/desktop/src/i18n/locales/lb/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/lb/messages.ts | 2 +- apps/desktop/src/i18n/locales/lg/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/lg/messages.ts | 2 +- apps/desktop/src/i18n/locales/ln/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ln/messages.ts | 2 +- apps/desktop/src/i18n/locales/lo/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/lo/messages.ts | 2 +- apps/desktop/src/i18n/locales/lt/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/lt/messages.ts | 2 +- apps/desktop/src/i18n/locales/lv/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/lv/messages.ts | 2 +- apps/desktop/src/i18n/locales/mg/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/mg/messages.ts | 2 +- apps/desktop/src/i18n/locales/mi/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/mi/messages.ts | 2 +- apps/desktop/src/i18n/locales/mk/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/mk/messages.ts | 2 +- apps/desktop/src/i18n/locales/ml/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ml/messages.ts | 2 +- apps/desktop/src/i18n/locales/mn/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/mn/messages.ts | 2 +- apps/desktop/src/i18n/locales/mr/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/mr/messages.ts | 2 +- apps/desktop/src/i18n/locales/ms/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ms/messages.ts | 2 +- apps/desktop/src/i18n/locales/mt/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/mt/messages.ts | 2 +- apps/desktop/src/i18n/locales/my/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/my/messages.ts | 2 +- apps/desktop/src/i18n/locales/ne/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ne/messages.ts | 2 +- apps/desktop/src/i18n/locales/nl/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/nl/messages.ts | 2 +- apps/desktop/src/i18n/locales/nn/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/nn/messages.ts | 2 +- apps/desktop/src/i18n/locales/no/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/no/messages.ts | 2 +- apps/desktop/src/i18n/locales/ny/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ny/messages.ts | 2 +- apps/desktop/src/i18n/locales/oc/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/oc/messages.ts | 2 +- apps/desktop/src/i18n/locales/or/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/or/messages.ts | 2 +- apps/desktop/src/i18n/locales/pa/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/pa/messages.ts | 2 +- apps/desktop/src/i18n/locales/pl/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/pl/messages.ts | 2 +- apps/desktop/src/i18n/locales/ps/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ps/messages.ts | 2 +- apps/desktop/src/i18n/locales/pt/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/pt/messages.ts | 2 +- apps/desktop/src/i18n/locales/ro/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ro/messages.ts | 2 +- apps/desktop/src/i18n/locales/ru/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ru/messages.ts | 2 +- apps/desktop/src/i18n/locales/sa/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/sa/messages.ts | 2 +- apps/desktop/src/i18n/locales/sd/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/sd/messages.ts | 2 +- apps/desktop/src/i18n/locales/si/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/si/messages.ts | 2 +- apps/desktop/src/i18n/locales/sk/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/sk/messages.ts | 2 +- apps/desktop/src/i18n/locales/sl/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/sl/messages.ts | 2 +- apps/desktop/src/i18n/locales/sn/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/sn/messages.ts | 2 +- apps/desktop/src/i18n/locales/so/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/so/messages.ts | 2 +- apps/desktop/src/i18n/locales/sq/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/sq/messages.ts | 2 +- apps/desktop/src/i18n/locales/sr/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/sr/messages.ts | 2 +- apps/desktop/src/i18n/locales/su/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/su/messages.ts | 2 +- apps/desktop/src/i18n/locales/sv/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/sv/messages.ts | 2 +- apps/desktop/src/i18n/locales/sw/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/sw/messages.ts | 2 +- apps/desktop/src/i18n/locales/ta/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ta/messages.ts | 2 +- apps/desktop/src/i18n/locales/te/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/te/messages.ts | 2 +- apps/desktop/src/i18n/locales/tg/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/tg/messages.ts | 2 +- apps/desktop/src/i18n/locales/th/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/th/messages.ts | 2 +- apps/desktop/src/i18n/locales/tk/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/tk/messages.ts | 2 +- apps/desktop/src/i18n/locales/tl/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/tl/messages.ts | 2 +- apps/desktop/src/i18n/locales/tr/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/tr/messages.ts | 2 +- apps/desktop/src/i18n/locales/tt/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/tt/messages.ts | 2 +- apps/desktop/src/i18n/locales/uk/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/uk/messages.ts | 2 +- apps/desktop/src/i18n/locales/ur/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/ur/messages.ts | 2 +- apps/desktop/src/i18n/locales/uz/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/uz/messages.ts | 2 +- apps/desktop/src/i18n/locales/vi/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/vi/messages.ts | 2 +- apps/desktop/src/i18n/locales/wo/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/wo/messages.ts | 2 +- apps/desktop/src/i18n/locales/xh/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/xh/messages.ts | 2 +- apps/desktop/src/i18n/locales/yi/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/yi/messages.ts | 2 +- apps/desktop/src/i18n/locales/yo/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/yo/messages.ts | 2 +- apps/desktop/src/i18n/locales/zh/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/zh/messages.ts | 2 +- apps/desktop/src/i18n/locales/zu/messages.po | 63 +++++++++++-------- apps/desktop/src/i18n/locales/zu/messages.ts | 2 +- apps/desktop/src/settings/ai/shared/index.tsx | 42 +++++++++++-- apps/desktop/src/settings/ai/stt/select.tsx | 44 ++++++++----- 220 files changed, 4099 insertions(+), 3070 deletions(-) diff --git a/apps/desktop/src/i18n/locales/af/messages.po b/apps/desktop/src/i18n/locales/af/messages.po index 83efdb8468..59753c346a 100644 --- a/apps/desktop/src/i18n/locales/af/messages.po +++ b/apps/desktop/src/i18n/locales/af/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Voeg gesproke taal by" msgid "Additional spoken languages" msgstr "Bykomende gesproke tale" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Hou outomaties op om te luister wanneer die vergaderingprogram die mikro msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Wys drywende balk" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/af/messages.ts b/apps/desktop/src/i18n/locales/af/messages.ts index 6101786c92..5789ad060a 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hooftaal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Voeg taal by\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Begin wanneer vergadering begin\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Die hooftaal is altyd ingesluit vir transkripsie\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Voeg gesproke taal by\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Soek taal...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Taal en streek\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Deel gebruiksdata\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Toepassing\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Begin outomaties luister wanneer 'n gebeurtenis-gesteunde noot sy geskeduleerde begintyd bereik.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Hou outomaties op om te luister wanneer die vergaderingprogram die mikrofoon vrystel.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Wys die kompakte drywende beheer terwyl jy luister.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bykomende gesproke tale\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Altyd gereed sonder om handmatig te begin.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Begin Anarlog by aanmelding\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Taal vir opsommings, kletse en KI-gegenereerde antwoorde\"],\"iDNBZe\":[\"Kennisgewings\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stop wanneer vergadering eindig\"],\"jzmguI\":[\"Vergaderings\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Geen passende tale gevind nie\"],\"k_sb6z\":[\"Kies taal\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Wys drywende balk\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Stuur anonieme gebruikontledings om Anarlog te help verbeter.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hooftaal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Voeg taal by\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Begin wanneer vergadering begin\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Die hooftaal is altyd ingesluit vir transkripsie\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Voeg gesproke taal by\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Soek taal...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Taal en streek\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Deel gebruiksdata\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Toepassing\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Begin outomaties luister wanneer 'n gebeurtenis-gesteunde noot sy geskeduleerde begintyd bereik.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Hou outomaties op om te luister wanneer die vergaderingprogram die mikrofoon vrystel.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Wys die kompakte drywende beheer terwyl jy luister.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bykomende gesproke tale\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Altyd gereed sonder om handmatig te begin.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Begin Anarlog by aanmelding\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Taal vir opsommings, kletse en KI-gegenereerde antwoorde\"],\"iDNBZe\":[\"Kennisgewings\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stop wanneer vergadering eindig\"],\"jzmguI\":[\"Vergaderings\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Geen passende tale gevind nie\"],\"k_sb6z\":[\"Kies taal\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Stuur anonieme gebruikontledings om Anarlog te help verbeter.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/am/messages.po b/apps/desktop/src/i18n/locales/am/messages.po index 9986adcc00..c85f3e68e8 100644 --- a/apps/desktop/src/i18n/locales/am/messages.po +++ b/apps/desktop/src/i18n/locales/am/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "የሚነገር ቋንቋ ያክሉ" msgid "Additional spoken languages" msgstr "ተጨማሪ የሚነገሩ ቋንቋዎች" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "የስብሰባው መተግበሪያ ማይክሮፎኑን ሲለቅ msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ተንሳፋፊ አሞሌ አሳይ" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/am/messages.ts b/apps/desktop/src/i18n/locales/am/messages.ts index dbb3f277c8..e447dc28ff 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ዋና ቋንቋ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ቋንቋ አክል\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ስብሰባ ሲጀምር ጀምር\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ዋናው ቋንቋ ሁል ጊዜ ለጽሑፍ ግልባጭ ተካቷል\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"የሚነገር ቋንቋ ያክሉ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ቋንቋ ፈልግ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ቋንቋ እና ክልል\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"የአጠቃቀም ውሂብ አጋራ\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ውሂብ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"መተግበሪያ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"በክስተት የተደገፈ ማስታወሻ የተያዘለት የመጀመሪያ ሰዓቱ ሲደርስ በራስ-ሰር ማዳመጥ ይጀምሩ።\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"የስብሰባው መተግበሪያ ማይክሮፎኑን ሲለቅ በራስ-ሰር ማዳመጥ ያቁሙ።\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"በማዳመጥ ጊዜ የታመቀ ተንሳፋፊ መቆጣጠሪያውን አሳይ።\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ተጨማሪ የሚነገሩ ቋንቋዎች\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"እራስዎ ሳይጀመር ሁልጊዜ ዝግጁ።\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"በመግቢያው ላይ አናርሎግ ይጀምሩ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ቋንቋ ለማጠቃለያዎች፣ ውይይቶች እና በAI-የተፈጠሩ ምላሾች\"],\"iDNBZe\":[\"ማሳወቂያዎች\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ስብሰባው ሲያልቅ ያቁሙ\"],\"jzmguI\":[\"ስብሰባዎች\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ምንም ተዛማጅ ቋንቋዎች አልተገኙም\"],\"k_sb6z\":[\"ቋንቋ ምረጥ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ተንሳፋፊ አሞሌ አሳይ\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"አናሎግ ለማሻሻል ለማገዝ ስም-አልባ የአጠቃቀም ትንታኔዎችን ይላኩ።\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ዋና ቋንቋ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ቋንቋ አክል\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ስብሰባ ሲጀምር ጀምር\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ዋናው ቋንቋ ሁል ጊዜ ለጽሑፍ ግልባጭ ተካቷል\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"የሚነገር ቋንቋ ያክሉ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ቋንቋ ፈልግ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ቋንቋ እና ክልል\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"የአጠቃቀም ውሂብ አጋራ\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ውሂብ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"መተግበሪያ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"በክስተት የተደገፈ ማስታወሻ የተያዘለት የመጀመሪያ ሰዓቱ ሲደርስ በራስ-ሰር ማዳመጥ ይጀምሩ።\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"የስብሰባው መተግበሪያ ማይክሮፎኑን ሲለቅ በራስ-ሰር ማዳመጥ ያቁሙ።\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"በማዳመጥ ጊዜ የታመቀ ተንሳፋፊ መቆጣጠሪያውን አሳይ።\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ተጨማሪ የሚነገሩ ቋንቋዎች\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"እራስዎ ሳይጀመር ሁልጊዜ ዝግጁ።\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"በመግቢያው ላይ አናርሎግ ይጀምሩ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ቋንቋ ለማጠቃለያዎች፣ ውይይቶች እና በAI-የተፈጠሩ ምላሾች\"],\"iDNBZe\":[\"ማሳወቂያዎች\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ስብሰባው ሲያልቅ ያቁሙ\"],\"jzmguI\":[\"ስብሰባዎች\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ምንም ተዛማጅ ቋንቋዎች አልተገኙም\"],\"k_sb6z\":[\"ቋንቋ ምረጥ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"አናሎግ ለማሻሻል ለማገዝ ስም-አልባ የአጠቃቀም ትንታኔዎችን ይላኩ።\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ar/messages.po b/apps/desktop/src/i18n/locales/ar/messages.po index ec220e8392..69fda981a3 100644 --- a/apps/desktop/src/i18n/locales/ar/messages.po +++ b/apps/desktop/src/i18n/locales/ar/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "إضافة لغة منطوقة" msgid "Additional spoken languages" msgstr "اللغات المنطوقة الإضافية" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "إيقاف الاستماع تلقائيًا عندما يقوم تطب msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "إظهار الشريط العائم" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ar/messages.ts b/apps/desktop/src/i18n/locales/ar/messages.ts index 483339f4a7..1e31b0585c 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"اللغة الرئيسية\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"إضافة لغة\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ابدأ عندما يبدأ الاجتماع\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"يتم تضمين اللغة الرئيسية دائمًا في عملية النسخ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"إضافة لغة منطوقة\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"لغة البحث...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"اللغة والمنطقة\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"مشاركة بيانات الاستخدام\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"البيانات\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"التطبيق\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ابدأ الاستماع تلقائيًا عندما تصل ملاحظة مدعومة بالحدث إلى وقت البدء المحدد لها.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"إيقاف الاستماع تلقائيًا عندما يقوم تطبيق الاجتماع بتحرير الميكروفون.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"إظهار عنصر التحكم العائم المدمج أثناء الاستماع.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اللغات المنطوقة الإضافية\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"جاهز دائمًا بدون التشغيل يدويًا.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ابدأ Anarlog عند تسجيل الدخول\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"لغة الملخصات والمحادثات والاستجابات التي ينشئها الذكاء الاصطناعي\"],\"iDNBZe\":[\"الإشعارات\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"توقف عند انتهاء الاجتماع\"],\"jzmguI\":[\"الاجتماعات\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"لم يتم العثور على لغات مطابقة\"],\"k_sb6z\":[\"حدد اللغة\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"إظهار الشريط العائم\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"أرسل تحليلات استخدام مجهولة المصدر للمساعدة في تحسين Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"اللغة الرئيسية\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"إضافة لغة\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ابدأ عندما يبدأ الاجتماع\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"يتم تضمين اللغة الرئيسية دائمًا في عملية النسخ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"إضافة لغة منطوقة\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"لغة البحث...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"اللغة والمنطقة\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"مشاركة بيانات الاستخدام\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"البيانات\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"التطبيق\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ابدأ الاستماع تلقائيًا عندما تصل ملاحظة مدعومة بالحدث إلى وقت البدء المحدد لها.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"إيقاف الاستماع تلقائيًا عندما يقوم تطبيق الاجتماع بتحرير الميكروفون.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"إظهار عنصر التحكم العائم المدمج أثناء الاستماع.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اللغات المنطوقة الإضافية\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"جاهز دائمًا بدون التشغيل يدويًا.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ابدأ Anarlog عند تسجيل الدخول\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"لغة الملخصات والمحادثات والاستجابات التي ينشئها الذكاء الاصطناعي\"],\"iDNBZe\":[\"الإشعارات\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"توقف عند انتهاء الاجتماع\"],\"jzmguI\":[\"الاجتماعات\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"لم يتم العثور على لغات مطابقة\"],\"k_sb6z\":[\"حدد اللغة\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"أرسل تحليلات استخدام مجهولة المصدر للمساعدة في تحسين Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/as/messages.po b/apps/desktop/src/i18n/locales/as/messages.po index 9a4e6ed44f..e5020e78ec 100644 --- a/apps/desktop/src/i18n/locales/as/messages.po +++ b/apps/desktop/src/i18n/locales/as/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "কথিত ভাষা যোগ কৰক" msgid "Additional spoken languages" msgstr "অতিৰিক্ত কথিত ভাষা" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "মিটিং এপে মাইক্ৰ'ফোন মুকলি msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ভাসমান বাৰ দেখুৱাওক" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/as/messages.ts b/apps/desktop/src/i18n/locales/as/messages.ts index 91c97c7d4a..0d4e93516f 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"মূল ভাষা\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ কৰক\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং আৰম্ভ হ'লে আৰম্ভ কৰক\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"প্ৰধান ভাষাটো সদায় লিপিবদ্ধ কৰাৰ বাবে অন্তৰ্ভুক্ত কৰা হয়\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"কথিত ভাষা যোগ কৰক\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"অন্বেষণ ভাষা...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ভাষা আৰু অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ব্যৱহাৰৰ তথ্য অংশীদাৰী কৰক\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"তথ্য\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"এপ্প\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"স্বয়ংক্ৰিয়ভাৱে শুনা আৰম্ভ কৰক যেতিয়া এটা ইভেন্ট-সমৰ্থিত টোকা ইয়াৰ নিৰ্ধাৰিত আৰম্ভণি সময় পোৱা যায়।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"মিটিং এপে মাইক্ৰ'ফোন মুকলি কৰাৰ সময়ত স্বয়ংক্ৰিয়ভাৱে শুনা বন্ধ কৰক।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"শুনি থকাৰ সময়ত কমপেক্ট ভাসমান নিয়ন্ত্ৰণ দেখুৱাওক।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিৰিক্ত কথিত ভাষা\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"হস্তচালিতভাৱে আৰম্ভ নকৰাকৈ সদায় সাজু।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"প্ৰৱেশৰ সময়ত Anarlog আৰম্ভ কৰক\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"সাৰাংশ, আড্ডা, আৰু AI-উৎপন্ন সঁহাৰিৰ বাবে ভাষা\"],\"iDNBZe\":[\"জাননীসমূহ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"মিটিং শেষ হ'লে বন্ধ কৰক\"],\"jzmguI\":[\"সভাসমূহ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"কোনো মিল থকা ভাষা পোৱা নগ'ল\"],\"k_sb6z\":[\"ভাষা নিৰ্বাচন কৰক\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ভাসমান বাৰ দেখুৱাওক\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog উন্নত কৰাত সহায় কৰিবলে বেনামী ব্যৱহাৰ বিশ্লেষণ পঠাওক।\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"মূল ভাষা\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ কৰক\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং আৰম্ভ হ'লে আৰম্ভ কৰক\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"প্ৰধান ভাষাটো সদায় লিপিবদ্ধ কৰাৰ বাবে অন্তৰ্ভুক্ত কৰা হয়\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"কথিত ভাষা যোগ কৰক\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"অন্বেষণ ভাষা...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ভাষা আৰু অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ব্যৱহাৰৰ তথ্য অংশীদাৰী কৰক\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"তথ্য\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"এপ্প\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"স্বয়ংক্ৰিয়ভাৱে শুনা আৰম্ভ কৰক যেতিয়া এটা ইভেন্ট-সমৰ্থিত টোকা ইয়াৰ নিৰ্ধাৰিত আৰম্ভণি সময় পোৱা যায়।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"মিটিং এপে মাইক্ৰ'ফোন মুকলি কৰাৰ সময়ত স্বয়ংক্ৰিয়ভাৱে শুনা বন্ধ কৰক।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"শুনি থকাৰ সময়ত কমপেক্ট ভাসমান নিয়ন্ত্ৰণ দেখুৱাওক।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিৰিক্ত কথিত ভাষা\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"হস্তচালিতভাৱে আৰম্ভ নকৰাকৈ সদায় সাজু।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"প্ৰৱেশৰ সময়ত Anarlog আৰম্ভ কৰক\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"সাৰাংশ, আড্ডা, আৰু AI-উৎপন্ন সঁহাৰিৰ বাবে ভাষা\"],\"iDNBZe\":[\"জাননীসমূহ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"মিটিং শেষ হ'লে বন্ধ কৰক\"],\"jzmguI\":[\"সভাসমূহ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"কোনো মিল থকা ভাষা পোৱা নগ'ল\"],\"k_sb6z\":[\"ভাষা নিৰ্বাচন কৰক\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog উন্নত কৰাত সহায় কৰিবলে বেনামী ব্যৱহাৰ বিশ্লেষণ পঠাওক।\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/az/messages.po b/apps/desktop/src/i18n/locales/az/messages.po index 9ec0fe244e..693fd7d754 100644 --- a/apps/desktop/src/i18n/locales/az/messages.po +++ b/apps/desktop/src/i18n/locales/az/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Danışıq dili əlavə edin" msgid "Additional spoken languages" msgstr "Əlavə danışıq dilləri" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Görüş proqramı mikrofonu buraxdıqda avtomatik olaraq dinləməni da msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Üzən çubuğu göstər" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/az/messages.ts b/apps/desktop/src/i18n/locales/az/messages.ts index 866ba26b5b..0912faa4d0 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Əsas dil\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil əlavə edin\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Görüş başlayanda başlayın\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Əsas dil həmişə transkripsiya üçün daxil edilir\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Danışıq dili əlavə edin\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Dil axtarın...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Dil və Region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"İstifadə datasını paylaşın\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Tətbiq\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Tədbirlə dəstəklənən qeyd planlaşdırılan başlama vaxtına çatdıqda avtomatik olaraq dinləməyə başlayın.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Görüş proqramı mikrofonu buraxdıqda avtomatik olaraq dinləməni dayandırın.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Qulaq asarkən kompakt üzən idarəetməni göstərin.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Əlavə danışıq dilləri\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Əl ilə işə salmadan həmişə hazırdır.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Giriş zamanı Analoqu başladın\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Xülasələr, söhbətlər və AI tərəfindən yaradılan cavablar üçün dil\"],\"iDNBZe\":[\"Bildirişlər\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Görüş bitəndə dayandırın\"],\"jzmguI\":[\"Görüşlər\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Uyğun dil tapılmadı\"],\"k_sb6z\":[\"Dil seçin\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Üzən çubuğu göstər\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarloqu təkmilləşdirməyə kömək etmək üçün anonim istifadə analitikasını göndərin.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Əsas dil\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil əlavə edin\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Görüş başlayanda başlayın\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Əsas dil həmişə transkripsiya üçün daxil edilir\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Danışıq dili əlavə edin\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Dil axtarın...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Dil və Region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"İstifadə datasını paylaşın\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Tətbiq\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Tədbirlə dəstəklənən qeyd planlaşdırılan başlama vaxtına çatdıqda avtomatik olaraq dinləməyə başlayın.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Görüş proqramı mikrofonu buraxdıqda avtomatik olaraq dinləməni dayandırın.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Qulaq asarkən kompakt üzən idarəetməni göstərin.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Əlavə danışıq dilləri\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Əl ilə işə salmadan həmişə hazırdır.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Giriş zamanı Analoqu başladın\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Xülasələr, söhbətlər və AI tərəfindən yaradılan cavablar üçün dil\"],\"iDNBZe\":[\"Bildirişlər\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Görüş bitəndə dayandırın\"],\"jzmguI\":[\"Görüşlər\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Uyğun dil tapılmadı\"],\"k_sb6z\":[\"Dil seçin\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarloqu təkmilləşdirməyə kömək etmək üçün anonim istifadə analitikasını göndərin.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ba/messages.po b/apps/desktop/src/i18n/locales/ba/messages.po index a63064d824..38d32861f7 100644 --- a/apps/desktop/src/i18n/locales/ba/messages.po +++ b/apps/desktop/src/i18n/locales/ba/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Һөйләү телен өҫтәү" msgid "Additional spoken languages" msgstr "Өҫтәмә һөйләү телдәре" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Осрашыу ҡушымтаһы микрофонды бушатҡас, msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Йөҙөүсе һыҙыҡты күрһәтеү" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ba/messages.ts b/apps/desktop/src/i18n/locales/ba/messages.ts index 76cb209115..4bdc1e3f85 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Төп тел\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өҫтәү\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Осрашыу башланғас башла\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Төп тел транскрипция өсөн һәр ваҡыт индерелә\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Һөйләү телен өҫтәү\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Эҙләү теле...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Тел һәм төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Ҡулланыу мәғлүмәттәре менән уртаҡлашыу\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Мәғлүмәттәр\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ҡушымта\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Ваҡиғалар менән нығытылған иҫкәрмә планлаштырылған башланғыс ваҡытҡа еткәс, автоматик рәүештә тыңлауҙы башлай.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Осрашыу ҡушымтаһы микрофонды бушатҡас, тыңлауҙы автоматик рәүештә туҡтата.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Тыңлағанда компактлы йөҙөүсе идара итеү ҡоролмаһын күрһәтегеҙ.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өҫтәмә һөйләү телдәре\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ҡул менән эшләтеп ебәрмәйенсә һәр ваҡыт әҙер.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Логин ваҡытында Анарлогты башлағыҙ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Йомғаҡлау, чаттар һәм ЯИ-генерацияланған яуаптар өсөн тел\"],\"iDNBZe\":[\"Хәбәр итеүҙәр\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Осрашыу тамамланғас туҡта\"],\"jzmguI\":[\"Осрашыуҙар\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Тап килгән телдәр табылмаған\"],\"k_sb6z\":[\"Телде һайлау\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Йөҙөүсе һыҙыҡты күрһәтеү\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Анарлогты яҡшыртыу өсөн аноним ҡулланыу аналитикаһын ебәрегеҙ.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Төп тел\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өҫтәү\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Осрашыу башланғас башла\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Төп тел транскрипция өсөн һәр ваҡыт индерелә\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Һөйләү телен өҫтәү\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Эҙләү теле...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Тел һәм төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Ҡулланыу мәғлүмәттәре менән уртаҡлашыу\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Мәғлүмәттәр\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ҡушымта\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Ваҡиғалар менән нығытылған иҫкәрмә планлаштырылған башланғыс ваҡытҡа еткәс, автоматик рәүештә тыңлауҙы башлай.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Осрашыу ҡушымтаһы микрофонды бушатҡас, тыңлауҙы автоматик рәүештә туҡтата.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Тыңлағанда компактлы йөҙөүсе идара итеү ҡоролмаһын күрһәтегеҙ.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өҫтәмә һөйләү телдәре\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ҡул менән эшләтеп ебәрмәйенсә һәр ваҡыт әҙер.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Логин ваҡытында Анарлогты башлағыҙ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Йомғаҡлау, чаттар һәм ЯИ-генерацияланған яуаптар өсөн тел\"],\"iDNBZe\":[\"Хәбәр итеүҙәр\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Осрашыу тамамланғас туҡта\"],\"jzmguI\":[\"Осрашыуҙар\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Тап килгән телдәр табылмаған\"],\"k_sb6z\":[\"Телде һайлау\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Анарлогты яҡшыртыу өсөн аноним ҡулланыу аналитикаһын ебәрегеҙ.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/be/messages.po b/apps/desktop/src/i18n/locales/be/messages.po index fbe1722889..ba400763ad 100644 --- a/apps/desktop/src/i18n/locales/be/messages.po +++ b/apps/desktop/src/i18n/locales/be/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Дадаць гутарковую мову" msgid "Additional spoken languages" msgstr "Дадатковыя размоўныя мовы" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Аўтаматычна спыняць праслухоўванне, ка msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Паказаць плаваючую панэль" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/be/messages.ts b/apps/desktop/src/i18n/locales/be/messages.ts index 5f166e5a68..0a9051fec9 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Асноўная мова\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Дадаць мову\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Пачаць, калі пачынаецца сустрэча\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Асноўная мова заўсёды ўключаецца ў транскрыпцыю\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Дадаць гутарковую мову\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Мова пошуку...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Мова і рэгіён\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Абагульваць дадзеныя аб выкарыстанні\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Даныя\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Прыкладанне\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Аўтаматычны пачатак праслухоўвання, калі нататка, якая падтрымліваецца падзеяй, надыходзіць запланаваны час пачатку.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Аўтаматычна спыняць праслухоўванне, калі праграма сустрэчы адпускае мікрафон.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Паказваць кампактны плаваючы элемент кіравання падчас праслухоўвання.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дадатковыя размоўныя мовы\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Заўсёды гатовы без ручнога запуску.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Запусціць Anarlog пры ўваходзе ў сістэму\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Мова для зводак, чатаў і адказаў, згенераваных штучным інтэлектам\"],\"iDNBZe\":[\"Апавяшчэнні\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Спыніцца, калі сустрэча скончыцца\"],\"jzmguI\":[\"Сустрэчы\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Не знойдзена адпаведных моў\"],\"k_sb6z\":[\"Выбраць мову\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Паказаць плаваючую панэль\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Адпраўляць ананімную аналітыку выкарыстання, каб дапамагчы палепшыць Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Асноўная мова\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Дадаць мову\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Пачаць, калі пачынаецца сустрэча\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Асноўная мова заўсёды ўключаецца ў транскрыпцыю\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Дадаць гутарковую мову\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Мова пошуку...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Мова і рэгіён\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Абагульваць дадзеныя аб выкарыстанні\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Даныя\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Прыкладанне\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Аўтаматычны пачатак праслухоўвання, калі нататка, якая падтрымліваецца падзеяй, надыходзіць запланаваны час пачатку.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Аўтаматычна спыняць праслухоўванне, калі праграма сустрэчы адпускае мікрафон.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Паказваць кампактны плаваючы элемент кіравання падчас праслухоўвання.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дадатковыя размоўныя мовы\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Заўсёды гатовы без ручнога запуску.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Запусціць Anarlog пры ўваходзе ў сістэму\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Мова для зводак, чатаў і адказаў, згенераваных штучным інтэлектам\"],\"iDNBZe\":[\"Апавяшчэнні\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Спыніцца, калі сустрэча скончыцца\"],\"jzmguI\":[\"Сустрэчы\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Не знойдзена адпаведных моў\"],\"k_sb6z\":[\"Выбраць мову\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Адпраўляць ананімную аналітыку выкарыстання, каб дапамагчы палепшыць Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bg/messages.po b/apps/desktop/src/i18n/locales/bg/messages.po index 348c3836d0..2f5e58dcb0 100644 --- a/apps/desktop/src/i18n/locales/bg/messages.po +++ b/apps/desktop/src/i18n/locales/bg/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Добавяне на говорим език" msgid "Additional spoken languages" msgstr "Допълнителни говорими езици" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Автоматично спиране на слушането, кога msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Показване на плаваща лента" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bg/messages.ts b/apps/desktop/src/i18n/locales/bg/messages.ts index f7085708fb..23e8a08f00 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Основен език\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавяне на език\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете, когато срещата започне\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Основният език винаги е включен за транскрипция\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Добавяне на говорим език\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Език за търсене...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Език и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Споделяне на данни за използване\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Данни\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Приложение\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Автоматично започване на прослушване, когато подкрепена от събитие бележка достигне планирания си начален час.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Автоматично спиране на слушането, когато приложението за срещи освободи микрофона.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Показване на компактния плаващ контрол, докато слушате.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Допълнителни говорими езици\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Винаги готов без ръчно стартиране.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Стартирайте Anarlog при влизане\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Език за резюмета, чатове и генерирани от AI отговори\"],\"iDNBZe\":[\"Известия\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Спрете, когато срещата приключи\"],\"jzmguI\":[\"Срещи\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Няма намерени съответстващи езици\"],\"k_sb6z\":[\"Избор на език\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Показване на плаваща лента\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Изпращайте анонимни анализи на използването, за да помогнете за подобряването на Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Основен език\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавяне на език\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете, когато срещата започне\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Основният език винаги е включен за транскрипция\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Добавяне на говорим език\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Език за търсене...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Език и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Споделяне на данни за използване\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Данни\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Приложение\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Автоматично започване на прослушване, когато подкрепена от събитие бележка достигне планирания си начален час.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Автоматично спиране на слушането, когато приложението за срещи освободи микрофона.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Показване на компактния плаващ контрол, докато слушате.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Допълнителни говорими езици\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Винаги готов без ръчно стартиране.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Стартирайте Anarlog при влизане\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Език за резюмета, чатове и генерирани от AI отговори\"],\"iDNBZe\":[\"Известия\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Спрете, когато срещата приключи\"],\"jzmguI\":[\"Срещи\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Няма намерени съответстващи езици\"],\"k_sb6z\":[\"Избор на език\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Изпращайте анонимни анализи на използването, за да помогнете за подобряването на Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bn/messages.po b/apps/desktop/src/i18n/locales/bn/messages.po index 41a74b479e..24f7e8f03b 100644 --- a/apps/desktop/src/i18n/locales/bn/messages.po +++ b/apps/desktop/src/i18n/locales/bn/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "কথ্য ভাষা যোগ করুন" msgid "Additional spoken languages" msgstr "অতিরিক্ত কথ্য ভাষা" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "মিটিং অ্যাপ মাইক্রোফোন প্র msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ভাসমান বার দেখান" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bn/messages.ts b/apps/desktop/src/i18n/locales/bn/messages.ts index 296c186d61..83dcfd765b 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"প্রধান ভাষা\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ করুন\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং শুরু হলে শুরু করুন\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"প্রধান ভাষা সর্বদা ট্রান্সক্রিপশনের জন্য অন্তর্ভুক্ত করা হয়\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"কথ্য ভাষা যোগ করুন\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ভাষা খুঁজুন...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ভাষা ও অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ব্যবহারের ডেটা শেয়ার করুন\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ডেটা\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"অ্যাপ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"একটি ইভেন্ট-ব্যাকড নোট তার নির্ধারিত শুরুর সময়ে পৌঁছে গেলে স্বয়ংক্রিয়ভাবে শোনা শুরু করুন।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"মিটিং অ্যাপ মাইক্রোফোন প্রকাশ করলে স্বয়ংক্রিয়ভাবে শোনা বন্ধ করুন।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"শোনার সময় কমপ্যাক্ট ফ্লোটিং কন্ট্রোল দেখান।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিরিক্ত কথ্য ভাষা\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ম্যানুয়ালি লঞ্চ না করে সর্বদা প্রস্তুত।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"লগইনে অ্যানারলগ শুরু করুন\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"সারাংশ, চ্যাট এবং এআই-উত্পন্ন প্রতিক্রিয়াগুলির জন্য ভাষা\"],\"iDNBZe\":[\"বিজ্ঞপ্তি\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"মিটিং শেষ হলে থামুন\"],\"jzmguI\":[\"মিটিং\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"কোন মিলিত ভাষা পাওয়া যায়নি\"],\"k_sb6z\":[\"ভাষা নির্বাচন করুন\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ভাসমান বার দেখান\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"অ্যানারলগ উন্নত করতে সাহায্য করার জন্য বেনামী ব্যবহার বিশ্লেষণ পাঠান।\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"প্রধান ভাষা\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ভাষা যোগ করুন\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং শুরু হলে শুরু করুন\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"প্রধান ভাষা সর্বদা ট্রান্সক্রিপশনের জন্য অন্তর্ভুক্ত করা হয়\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"কথ্য ভাষা যোগ করুন\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ভাষা খুঁজুন...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ভাষা ও অঞ্চল\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ব্যবহারের ডেটা শেয়ার করুন\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ডেটা\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"অ্যাপ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"একটি ইভেন্ট-ব্যাকড নোট তার নির্ধারিত শুরুর সময়ে পৌঁছে গেলে স্বয়ংক্রিয়ভাবে শোনা শুরু করুন।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"মিটিং অ্যাপ মাইক্রোফোন প্রকাশ করলে স্বয়ংক্রিয়ভাবে শোনা বন্ধ করুন।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"শোনার সময় কমপ্যাক্ট ফ্লোটিং কন্ট্রোল দেখান।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"অতিরিক্ত কথ্য ভাষা\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ম্যানুয়ালি লঞ্চ না করে সর্বদা প্রস্তুত।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"লগইনে অ্যানারলগ শুরু করুন\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"সারাংশ, চ্যাট এবং এআই-উত্পন্ন প্রতিক্রিয়াগুলির জন্য ভাষা\"],\"iDNBZe\":[\"বিজ্ঞপ্তি\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"মিটিং শেষ হলে থামুন\"],\"jzmguI\":[\"মিটিং\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"কোন মিলিত ভাষা পাওয়া যায়নি\"],\"k_sb6z\":[\"ভাষা নির্বাচন করুন\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"অ্যানারলগ উন্নত করতে সাহায্য করার জন্য বেনামী ব্যবহার বিশ্লেষণ পাঠান।\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bo/messages.po b/apps/desktop/src/i18n/locales/bo/messages.po index 97e5f2c40c..6376426301 100644 --- a/apps/desktop/src/i18n/locales/bo/messages.po +++ b/apps/desktop/src/i18n/locales/bo/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "སྐད་ཆའི་སྐད་ཡིག་ཁ་སྣོན" msgid "Additional spoken languages" msgstr "ཁ་སྣོན་གྱི་སྐད་ཆ" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "ཚོགས་འདུའི་མཉེན་ཆས་ཀྱིས་ msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "འཕྱོ་བའི་ཕྲ་རིང་སྟོན།" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bo/messages.ts b/apps/desktop/src/i18n/locales/bo/messages.ts index 6a4c42ac5a..5c329288af 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"སྐད་ཡིག་གཙོ་བོ།\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"སྐད་ཡིག་ཁ་སྣོན\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ཚོགས་འདུ་འགོ་འཛུགས་སྐབས་འགོ་འཛུགས།\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ཡིག་བསྒྱུར་གྱི་ཆེད་དུ་སྐད་ཡིག་གཙོ་བོ་ནི་རྟག་ཏུ་ཚུད་ཡོད།\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"སྐད་ཆའི་སྐད་ཡིག་ཁ་སྣོན\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"འཚོལ་ཞིབ་སྐད་ཡིག...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"སྐད་ཡིག་དང་ས་ཁུལ།\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"བེད་སྤྱོད་ཀྱི་གཞི་གྲངས་མཉམ་སྤྱོད།\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"གཞི་གྲངས།\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"མཉེན་ཆས།\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"བྱུང་རིམ་རྒྱབ་སྐྱོར་བྱས་པའི་དྲན་ཐོ་ཞིག་དུས་ཚོད་གཏན་འཁེལ་བྱས་པའི་འགོ་འཛུགས་དུས་ཚོད་ལ་སླེབས་སྐབས་རང་འགུལ་གྱིས་ཉན་འགོ་ཚུགས།\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ཚོགས་འདུའི་མཉེན་ཆས་ཀྱིས་སྐད་འཕྲིན་གློད་དུས་རང་འགུལ་གྱིས་ཉན་མཚམས་འཇོག་གི་ཡོད།\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ཉན་པའི་སྐབས་སུ་འཕྱོ་བའི་ཚོད་འཛིན་ཆུང་ཆུང་དེ་སྟོན།\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ཁ་སྣོན་གྱི་སྐད་ཆ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ལག་ཐོག་ནས་འགོ་མ་བཙུགས་པར་ག་དུས་ཡིན་ཡང་གྲ་སྒྲིག་ཡོད།\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ནང་འཇུག་བྱེད་སྐབས་ཨ་ནར་ལོག་འགོ་འཛུགས།\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"སྙིང་བསྡུས་དང་། ཁ་བརྡ། AI ཡིས་བཟོས་པའི་ལན་འདེབས་ཀྱི་སྐད་ཡིག\"],\"iDNBZe\":[\"བརྡ་ཐོ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ཚོགས་འདུ་གྲོལ་རྗེས་མཚམས་འཇོག་དགོས།\"],\"jzmguI\":[\"ཚོགས་འདུ།\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"མཐུན་པའི་སྐད་ཡིག་མ་རྙེད།\"],\"k_sb6z\":[\"སྐད་ཡིག་འདེམས།\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"འཕྱོ་བའི་ཕྲ་རིང་སྟོན།\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"མིང་མེད་པའི་བེད་སྤྱོད་དབྱེ་ཞིབ་གཏོང་ནས་ཨ་ནར་ལོག་ཡར་རྒྱས་གཏོང་བར་ཕན་ཐོགས།\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"སྐད་ཡིག་གཙོ་བོ།\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"སྐད་ཡིག་ཁ་སྣོན\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ཚོགས་འདུ་འགོ་འཛུགས་སྐབས་འགོ་འཛུགས།\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ཡིག་བསྒྱུར་གྱི་ཆེད་དུ་སྐད་ཡིག་གཙོ་བོ་ནི་རྟག་ཏུ་ཚུད་ཡོད།\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"སྐད་ཆའི་སྐད་ཡིག་ཁ་སྣོན\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"འཚོལ་ཞིབ་སྐད་ཡིག...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"སྐད་ཡིག་དང་ས་ཁུལ།\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"བེད་སྤྱོད་ཀྱི་གཞི་གྲངས་མཉམ་སྤྱོད།\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"གཞི་གྲངས།\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"མཉེན་ཆས།\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"བྱུང་རིམ་རྒྱབ་སྐྱོར་བྱས་པའི་དྲན་ཐོ་ཞིག་དུས་ཚོད་གཏན་འཁེལ་བྱས་པའི་འགོ་འཛུགས་དུས་ཚོད་ལ་སླེབས་སྐབས་རང་འགུལ་གྱིས་ཉན་འགོ་ཚུགས།\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ཚོགས་འདུའི་མཉེན་ཆས་ཀྱིས་སྐད་འཕྲིན་གློད་དུས་རང་འགུལ་གྱིས་ཉན་མཚམས་འཇོག་གི་ཡོད།\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ཉན་པའི་སྐབས་སུ་འཕྱོ་བའི་ཚོད་འཛིན་ཆུང་ཆུང་དེ་སྟོན།\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ཁ་སྣོན་གྱི་སྐད་ཆ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ལག་ཐོག་ནས་འགོ་མ་བཙུགས་པར་ག་དུས་ཡིན་ཡང་གྲ་སྒྲིག་ཡོད།\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ནང་འཇུག་བྱེད་སྐབས་ཨ་ནར་ལོག་འགོ་འཛུགས།\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"སྙིང་བསྡུས་དང་། ཁ་བརྡ། AI ཡིས་བཟོས་པའི་ལན་འདེབས་ཀྱི་སྐད་ཡིག\"],\"iDNBZe\":[\"བརྡ་ཐོ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ཚོགས་འདུ་གྲོལ་རྗེས་མཚམས་འཇོག་དགོས།\"],\"jzmguI\":[\"ཚོགས་འདུ།\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"མཐུན་པའི་སྐད་ཡིག་མ་རྙེད།\"],\"k_sb6z\":[\"སྐད་ཡིག་འདེམས།\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"མིང་མེད་པའི་བེད་སྤྱོད་དབྱེ་ཞིབ་གཏོང་ནས་ཨ་ནར་ལོག་ཡར་རྒྱས་གཏོང་བར་ཕན་ཐོགས།\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/br/messages.po b/apps/desktop/src/i18n/locales/br/messages.po index 4985edc573..971f26d024 100644 --- a/apps/desktop/src/i18n/locales/br/messages.po +++ b/apps/desktop/src/i18n/locales/br/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ouzhpennañ ar yezh komzet" msgid "Additional spoken languages" msgstr "Yezhoù komzet ouzhpenn" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Paouez da selaou ent emgefre pa vo laosket ar mikro gant an arload emvod msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Diskouez ar varrenn o nijal" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/br/messages.ts b/apps/desktop/src/i18n/locales/br/messages.ts index f7ba1cf9e9..18cb837b52 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Yezh pennañ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ouzhpennañ ur yezh\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kregiñ pa grogo an emvod\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Lakaet e vez atav ar yezh pennañ evit an treuzskrivadur\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ouzhpennañ ar yezh komzet\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Klask yezh...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Yezh & Rannvro\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Rannañ roadennoù implij\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Roadennoù\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Arload\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Kregiñ a ra ar selaou ent emgefre pa erru un notenn skoret gant un darvoud d'an eur loc'hañ rakwelet.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Paouez da selaou ent emgefre pa vo laosket ar mikro gant an arload emvod.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Diskouez ar c'hontroll neuial bihan e-pad ma selaouer.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yezhoù komzet ouzhpenn\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Prest atav hep loc'hañ dre zorn.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Kregiñ gant an Anarlog pa vez kevreet\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Yezh evit an diverrañ, ar flapañ hag ar respontoù krouet gant IA\"],\"iDNBZe\":[\"Kemennadennoù\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Paouez pa vo echu an emvod\"],\"jzmguI\":[\"Emvodoù\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"N'eus bet kavet yezh ebet a glot\"],\"k_sb6z\":[\"Dibab yezh\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Diskouez ar varrenn o nijal\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Kas dielfennadurioù implij dizanv evit sikour da wellaat Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Yezh pennañ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ouzhpennañ ur yezh\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kregiñ pa grogo an emvod\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Lakaet e vez atav ar yezh pennañ evit an treuzskrivadur\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ouzhpennañ ar yezh komzet\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Klask yezh...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Yezh & Rannvro\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Rannañ roadennoù implij\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Roadennoù\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Arload\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Kregiñ a ra ar selaou ent emgefre pa erru un notenn skoret gant un darvoud d'an eur loc'hañ rakwelet.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Paouez da selaou ent emgefre pa vo laosket ar mikro gant an arload emvod.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Diskouez ar c'hontroll neuial bihan e-pad ma selaouer.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yezhoù komzet ouzhpenn\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Prest atav hep loc'hañ dre zorn.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Kregiñ gant an Anarlog pa vez kevreet\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Yezh evit an diverrañ, ar flapañ hag ar respontoù krouet gant IA\"],\"iDNBZe\":[\"Kemennadennoù\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Paouez pa vo echu an emvod\"],\"jzmguI\":[\"Emvodoù\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"N'eus bet kavet yezh ebet a glot\"],\"k_sb6z\":[\"Dibab yezh\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Kas dielfennadurioù implij dizanv evit sikour da wellaat Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/bs/messages.po b/apps/desktop/src/i18n/locales/bs/messages.po index a002b5d418..6e9a18ed41 100644 --- a/apps/desktop/src/i18n/locales/bs/messages.po +++ b/apps/desktop/src/i18n/locales/bs/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Dodaj govorni jezik" msgid "Additional spoken languages" msgstr "Dodatni govorni jezici" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Automatski zaustavi slušanje kada aplikacija za sastanak pusti mikrofon msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Prikaži plutajuću traku" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/bs/messages.ts b/apps/desktop/src/i18n/locales/bs/messages.ts index 26717a3a47..8b6c14cc80 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Glavni jezik\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Započni kada sastanak počne\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Glavni jezik je uvijek uključen za transkripciju\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Pretraži jezik...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Dijelite podatke o korištenju\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Podaci\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikacija\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatski počnite slušati kada bilješka podržana događajem dostigne zakazano vrijeme početka.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatski zaustavi slušanje kada aplikacija za sastanak pusti mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Prikaži kompaktnu plutajuću kontrolu dok slušate.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Uvijek spreman bez ručnog pokretanja.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Jezik za sažetke, razgovore i odgovore generirane umjetnom inteligencijom\"],\"iDNBZe\":[\"Obaveštenja\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"k_sb6z\":[\"Odaberite jezik\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Prikaži plutajuću traku\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Pošaljite anonimnu analitiku korištenja da pomognete poboljšanju Anarloga.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Glavni jezik\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Započni kada sastanak počne\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Glavni jezik je uvijek uključen za transkripciju\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Pretraži jezik...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Dijelite podatke o korištenju\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Podaci\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikacija\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatski počnite slušati kada bilješka podržana događajem dostigne zakazano vrijeme početka.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatski zaustavi slušanje kada aplikacija za sastanak pusti mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Prikaži kompaktnu plutajuću kontrolu dok slušate.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Uvijek spreman bez ručnog pokretanja.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Jezik za sažetke, razgovore i odgovore generirane umjetnom inteligencijom\"],\"iDNBZe\":[\"Obaveštenja\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"k_sb6z\":[\"Odaberite jezik\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Pošaljite anonimnu analitiku korištenja da pomognete poboljšanju Anarloga.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ca/messages.po b/apps/desktop/src/i18n/locales/ca/messages.po index 3170b39f72..80f467f1fc 100644 --- a/apps/desktop/src/i18n/locales/ca/messages.po +++ b/apps/desktop/src/i18n/locales/ca/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Afegeix un idioma parlat" msgid "Additional spoken languages" msgstr "Idiomes parlats addicionals" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Deixa d'escoltar automàticament quan l'aplicació de reunió alliberi e msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Mostra la barra flotant" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ca/messages.ts b/apps/desktop/src/i18n/locales/ca/messages.ts index a4c99312b5..d011eed5cf 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Idioma principal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Afegeix un idioma\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comenceu quan comenci la reunió\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"L'idioma principal sempre s'inclou per a la transcripció\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Afegeix un idioma parlat\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Cerca l'idioma...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Idioma i regió\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Comparteix les dades d'ús\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dades\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicació\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Comença a escoltar automàticament quan una nota amb el suport d'un esdeveniment arriba a l'hora d'inici programada.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Deixa d'escoltar automàticament quan l'aplicació de reunió alliberi el micròfon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Mostra el control flotant compacte mentre escoltes.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomes parlats addicionals\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Sempre a punt sense iniciar-lo manualment.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Inicieu Anarlog en iniciar sessió\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Idioma per a resums, xats i respostes generades per IA\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Atura't quan acabi la reunió\"],\"jzmguI\":[\"Reunions\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"No s'han trobat idiomes coincidents\"],\"k_sb6z\":[\"Seleccioneu l'idioma\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Mostra la barra flotant\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Envieu analítiques d'ús anònimes per ajudar a millorar Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Idioma principal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Afegeix un idioma\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comenceu quan comenci la reunió\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"L'idioma principal sempre s'inclou per a la transcripció\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Afegeix un idioma parlat\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Cerca l'idioma...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Idioma i regió\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Comparteix les dades d'ús\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dades\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicació\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Comença a escoltar automàticament quan una nota amb el suport d'un esdeveniment arriba a l'hora d'inici programada.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Deixa d'escoltar automàticament quan l'aplicació de reunió alliberi el micròfon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Mostra el control flotant compacte mentre escoltes.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomes parlats addicionals\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Sempre a punt sense iniciar-lo manualment.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Inicieu Anarlog en iniciar sessió\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Idioma per a resums, xats i respostes generades per IA\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Atura't quan acabi la reunió\"],\"jzmguI\":[\"Reunions\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"No s'han trobat idiomes coincidents\"],\"k_sb6z\":[\"Seleccioneu l'idioma\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Envieu analítiques d'ús anònimes per ajudar a millorar Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/cs/messages.po b/apps/desktop/src/i18n/locales/cs/messages.po index 17bc2e6aeb..4a46e33528 100644 --- a/apps/desktop/src/i18n/locales/cs/messages.po +++ b/apps/desktop/src/i18n/locales/cs/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Přidat mluvený jazyk" msgid "Additional spoken languages" msgstr "Další mluvené jazyky" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Automaticky přestat poslouchat, když schůzková aplikace uvolní mikr msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Zobrazit plovoucí lištu" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/cs/messages.ts b/apps/desktop/src/i18n/locales/cs/messages.ts index 284e91a7ec..1b31efc741 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hlavní jazyk\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Přidat jazyk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začít při zahájení schůzky\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Pro přepis je vždy zahrnut hlavní jazyk\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Přidat mluvený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Jazyk vyhledávání...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Jazyk a oblast\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Sdílet údaje o využití\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikace\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automaticky začít poslouchat, když poznámka podporovaná událostí dosáhne svého plánovaného času zahájení.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automaticky přestat poslouchat, když schůzková aplikace uvolní mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Při poslechu ukažte kompaktní plovoucí ovládání.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Další mluvené jazyky\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Vždy připraven bez ručního spouštění.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Spustit Anarlog při přihlášení\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Jazyk pro shrnutí, chaty a odpovědi generované umělou inteligencí\"],\"iDNBZe\":[\"Oznámení\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Zastavit, když schůzka skončí\"],\"jzmguI\":[\"Schůzky\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nebyly nalezeny žádné odpovídající jazyky\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Zobrazit plovoucí lištu\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Posílejte anonymní analýzy využití, které pomohou zlepšit Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hlavní jazyk\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Přidat jazyk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začít při zahájení schůzky\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Pro přepis je vždy zahrnut hlavní jazyk\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Přidat mluvený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Jazyk vyhledávání...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Jazyk a oblast\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Sdílet údaje o využití\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikace\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automaticky začít poslouchat, když poznámka podporovaná událostí dosáhne svého plánovaného času zahájení.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automaticky přestat poslouchat, když schůzková aplikace uvolní mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Při poslechu ukažte kompaktní plovoucí ovládání.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Další mluvené jazyky\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Vždy připraven bez ručního spouštění.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Spustit Anarlog při přihlášení\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Jazyk pro shrnutí, chaty a odpovědi generované umělou inteligencí\"],\"iDNBZe\":[\"Oznámení\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Zastavit, když schůzka skončí\"],\"jzmguI\":[\"Schůzky\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nebyly nalezeny žádné odpovídající jazyky\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Posílejte anonymní analýzy využití, které pomohou zlepšit Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/cy/messages.po b/apps/desktop/src/i18n/locales/cy/messages.po index 4f54e908a3..66e068510f 100644 --- a/apps/desktop/src/i18n/locales/cy/messages.po +++ b/apps/desktop/src/i18n/locales/cy/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ychwanegu iaith lafar" msgid "Additional spoken languages" msgstr "Ieithoedd llafar ychwanegol" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Rhowch y gorau i wrando'n awtomatig pan fydd ap y cyfarfod yn rhyddhau'r msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Dangos bar arnofio" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/cy/messages.ts b/apps/desktop/src/i18n/locales/cy/messages.ts index 8fab22bea7..8a59d01cda 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Prif iaith\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ychwanegu iaith\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dechrau pan fydd y cyfarfod yn dechrau\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Mae'r brif iaith bob amser yn cael ei chynnwys ar gyfer trawsgrifio\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ychwanegu iaith lafar\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Iaith chwilio...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Iaith a Rhanbarth\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Rhannu data defnydd\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ap\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Dechrau gwrando'n awtomatig pan fydd nodyn a gefnogir gan ddigwyddiad yn cyrraedd ei amser cychwyn a drefnwyd.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Rhowch y gorau i wrando'n awtomatig pan fydd ap y cyfarfod yn rhyddhau'r meicroffon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Dangos y rheolydd arnofio cryno wrth wrando.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ieithoedd llafar ychwanegol\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Bob amser yn barod heb ei lansio â llaw.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Dechrau Anarlog wrth fewngofnodi\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Iaith ar gyfer crynodebau, sgyrsiau, ac ymatebion a gynhyrchir gan AI\"],\"iDNBZe\":[\"Hysbysiadau\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stopiwch pan ddaw'r cyfarfod i ben\"],\"jzmguI\":[\"Cyfarfodydd\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ni chanfuwyd ieithoedd sy'n cyfateb\"],\"k_sb6z\":[\"Dewiswch iaith\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Dangos bar arnofio\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anfon dadansoddeg defnydd dienw i helpu i wella Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Prif iaith\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ychwanegu iaith\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dechrau pan fydd y cyfarfod yn dechrau\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Mae'r brif iaith bob amser yn cael ei chynnwys ar gyfer trawsgrifio\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ychwanegu iaith lafar\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Iaith chwilio...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Iaith a Rhanbarth\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Rhannu data defnydd\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ap\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Dechrau gwrando'n awtomatig pan fydd nodyn a gefnogir gan ddigwyddiad yn cyrraedd ei amser cychwyn a drefnwyd.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Rhowch y gorau i wrando'n awtomatig pan fydd ap y cyfarfod yn rhyddhau'r meicroffon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Dangos y rheolydd arnofio cryno wrth wrando.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ieithoedd llafar ychwanegol\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Bob amser yn barod heb ei lansio â llaw.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Dechrau Anarlog wrth fewngofnodi\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Iaith ar gyfer crynodebau, sgyrsiau, ac ymatebion a gynhyrchir gan AI\"],\"iDNBZe\":[\"Hysbysiadau\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stopiwch pan ddaw'r cyfarfod i ben\"],\"jzmguI\":[\"Cyfarfodydd\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ni chanfuwyd ieithoedd sy'n cyfateb\"],\"k_sb6z\":[\"Dewiswch iaith\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anfon dadansoddeg defnydd dienw i helpu i wella Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/da/messages.po b/apps/desktop/src/i18n/locales/da/messages.po index d02c651aa2..a87c2e0ebf 100644 --- a/apps/desktop/src/i18n/locales/da/messages.po +++ b/apps/desktop/src/i18n/locales/da/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Tilføj talesprog" msgid "Additional spoken languages" msgstr "Yderligere talte sprog" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Stop automatisk med at lytte, når mødeappen slipper mikrofonen." msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Vis flydende bjælke" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/da/messages.ts b/apps/desktop/src/i18n/locales/da/messages.ts index 7ffe99bc8d..a24f8e354e 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hovedsprog\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tilføj sprog\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start, når mødet begynder\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Hovedsproget er altid inkluderet til transskription\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tilføj talesprog\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Søgesprog...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Sprog og region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Del brugsdata\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Begynd automatisk at lytte, når en begivenhedsstøttet note når sit planlagte starttidspunkt.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Stop automatisk med at lytte, når mødeappen slipper mikrofonen.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Vis den kompakte flydende kontrol, mens du lytter.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yderligere talte sprog\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Altid klar uden manuel lancering.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog ved login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Sprog til resuméer, chats og AI-genererede svar\"],\"iDNBZe\":[\"Underretninger\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stop, når mødet slutter\"],\"jzmguI\":[\"Møder\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Der blev ikke fundet nogen matchende sprog\"],\"k_sb6z\":[\"Vælg sprog\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Vis flydende bjælke\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send anonym brugsanalyse for at hjælpe med at forbedre Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hovedsprog\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tilføj sprog\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start, når mødet begynder\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Hovedsproget er altid inkluderet til transskription\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tilføj talesprog\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Søgesprog...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Sprog og region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Del brugsdata\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Begynd automatisk at lytte, når en begivenhedsstøttet note når sit planlagte starttidspunkt.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Stop automatisk med at lytte, når mødeappen slipper mikrofonen.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Vis den kompakte flydende kontrol, mens du lytter.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yderligere talte sprog\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Altid klar uden manuel lancering.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog ved login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Sprog til resuméer, chats og AI-genererede svar\"],\"iDNBZe\":[\"Underretninger\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stop, når mødet slutter\"],\"jzmguI\":[\"Møder\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Der blev ikke fundet nogen matchende sprog\"],\"k_sb6z\":[\"Vælg sprog\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send anonym brugsanalyse for at hjælpe med at forbedre Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/de/messages.po b/apps/desktop/src/i18n/locales/de/messages.po index b4f4b2bf1d..0d6c4fe531 100644 --- a/apps/desktop/src/i18n/locales/de/messages.po +++ b/apps/desktop/src/i18n/locales/de/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Gesprochene Sprache hinzufügen" msgid "Additional spoken languages" msgstr "Weitere gesprochene Sprachen" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Automatisch aufhören zuzuhören, wenn die Meeting-App das Mikrofon frei msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Schwebende Leiste anzeigen" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/de/messages.ts b/apps/desktop/src/i18n/locales/de/messages.ts index cf15c5206c..54a4b032ff 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hauptsprache\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprache hinzufügen\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Beim Beginn des Meetings starten\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Die Hauptsprache wird für die Transkription immer eingeschlossen\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Gesprochene Sprache hinzufügen\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Sprache suchen...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Sprache & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Nutzungsdaten teilen\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Daten\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatisch mit dem Zuhören beginnen, wenn eine kalenderbasierte Notiz ihre geplante Startzeit erreicht.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatisch aufhören zuzuhören, wenn die Meeting-App das Mikrofon freigibt.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Die kompakte schwebende Steuerung beim Zuhören anzeigen.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Weitere gesprochene Sprachen\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Immer bereit, ohne manuelles Starten.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Anarlog beim Anmelden starten\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Sprache für Zusammenfassungen, Chats und KI-generierte Antworten\"],\"iDNBZe\":[\"Benachrichtigungen\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stoppen, wenn das Meeting endet\"],\"jzmguI\":[\"Treffen\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Keine passenden Sprachen gefunden\"],\"k_sb6z\":[\"Sprache auswählen\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Schwebende Leiste anzeigen\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anonyme Nutzungsanalysen senden, um Anarlog zu verbessern.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hauptsprache\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprache hinzufügen\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Beim Beginn des Meetings starten\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Die Hauptsprache wird für die Transkription immer eingeschlossen\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Gesprochene Sprache hinzufügen\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Sprache suchen...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Sprache & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Nutzungsdaten teilen\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Daten\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatisch mit dem Zuhören beginnen, wenn eine kalenderbasierte Notiz ihre geplante Startzeit erreicht.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatisch aufhören zuzuhören, wenn die Meeting-App das Mikrofon freigibt.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Die kompakte schwebende Steuerung beim Zuhören anzeigen.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Weitere gesprochene Sprachen\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Immer bereit, ohne manuelles Starten.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Anarlog beim Anmelden starten\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Sprache für Zusammenfassungen, Chats und KI-generierte Antworten\"],\"iDNBZe\":[\"Benachrichtigungen\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stoppen, wenn das Meeting endet\"],\"jzmguI\":[\"Treffen\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Keine passenden Sprachen gefunden\"],\"k_sb6z\":[\"Sprache auswählen\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anonyme Nutzungsanalysen senden, um Anarlog zu verbessern.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/el/messages.po b/apps/desktop/src/i18n/locales/el/messages.po index c198a0d6c5..dc30a8e932 100644 --- a/apps/desktop/src/i18n/locales/el/messages.po +++ b/apps/desktop/src/i18n/locales/el/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Προσθήκη προφορικής γλώσσας" msgid "Additional spoken languages" msgstr "Πρόσθετες ομιλούμενες γλώσσες" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Διακόψτε αυτόματα την ακρόαση όταν η εφ msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Εμφάνιση αιωρούμενης γραμμής" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/el/messages.ts b/apps/desktop/src/i18n/locales/el/messages.ts index c09bb0bffe..9e14586544 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Κύρια γλώσσα\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Προσθήκη γλώσσας\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ξεκινήστε όταν ξεκινά η σύσκεψη\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Η κύρια γλώσσα περιλαμβάνεται πάντα για μεταγραφή\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Προσθήκη προφορικής γλώσσας\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Αναζήτηση γλώσσας...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Γλώσσα και περιοχή\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Κοινή χρήση δεδομένων χρήσης\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Δεδομένα\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Εφαρμογή\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Αυτόματη έναρξη ακρόασης όταν μια σημείωση που υποστηρίζεται από συμβάν φτάσει στην προγραμματισμένη ώρα έναρξης.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Διακόψτε αυτόματα την ακρόαση όταν η εφαρμογή σύσκεψης απελευθερώσει το μικρόφωνο.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Εμφάνιση του συμπαγούς αιωρούμενου χειριστηρίου κατά την ακρόαση.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Πρόσθετες ομιλούμενες γλώσσες\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Πάντα έτοιμο χωρίς μη αυτόματη εκκίνηση.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Ξεκινήστε το Anarlog κατά τη σύνδεση\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Γλώσσα για περιλήψεις, συνομιλίες και απαντήσεις που δημιουργούνται από AI\"],\"iDNBZe\":[\"Ειδοποιήσεις\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Διακοπή όταν τελειώσει η σύσκεψη\"],\"jzmguI\":[\"Συναντήσεις\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Δεν βρέθηκαν γλώσσες που να ταιριάζουν\"],\"k_sb6z\":[\"Επιλογή γλώσσας\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Εμφάνιση αιωρούμενης γραμμής\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Στείλτε ανώνυμα αναλυτικά στοιχεία χρήσης για να συμβάλετε στη βελτίωση του Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Κύρια γλώσσα\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Προσθήκη γλώσσας\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ξεκινήστε όταν ξεκινά η σύσκεψη\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Η κύρια γλώσσα περιλαμβάνεται πάντα για μεταγραφή\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Προσθήκη προφορικής γλώσσας\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Αναζήτηση γλώσσας...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Γλώσσα και περιοχή\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Κοινή χρήση δεδομένων χρήσης\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Δεδομένα\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Εφαρμογή\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Αυτόματη έναρξη ακρόασης όταν μια σημείωση που υποστηρίζεται από συμβάν φτάσει στην προγραμματισμένη ώρα έναρξης.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Διακόψτε αυτόματα την ακρόαση όταν η εφαρμογή σύσκεψης απελευθερώσει το μικρόφωνο.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Εμφάνιση του συμπαγούς αιωρούμενου χειριστηρίου κατά την ακρόαση.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Πρόσθετες ομιλούμενες γλώσσες\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Πάντα έτοιμο χωρίς μη αυτόματη εκκίνηση.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Ξεκινήστε το Anarlog κατά τη σύνδεση\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Γλώσσα για περιλήψεις, συνομιλίες και απαντήσεις που δημιουργούνται από AI\"],\"iDNBZe\":[\"Ειδοποιήσεις\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Διακοπή όταν τελειώσει η σύσκεψη\"],\"jzmguI\":[\"Συναντήσεις\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Δεν βρέθηκαν γλώσσες που να ταιριάζουν\"],\"k_sb6z\":[\"Επιλογή γλώσσας\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Στείλτε ανώνυμα αναλυτικά στοιχεία χρήσης για να συμβάλετε στη βελτίωση του Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/en/messages.po b/apps/desktop/src/i18n/locales/en/messages.po index 53092759fc..979177b6bf 100644 --- a/apps/desktop/src/i18n/locales/en/messages.po +++ b/apps/desktop/src/i18n/locales/en/messages.po @@ -34,7 +34,7 @@ msgstr "{trialDaysRemaining} days left" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "<0>Language model is needed to make Anarlog summarize and chat about your conversations." -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "<0>Transcription model is needed to make Anarlog listen to your conversations." @@ -115,10 +115,14 @@ msgstr "Add spoken language" msgid "Additional spoken languages" msgstr "Additional spoken languages" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "Advanced" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "After recording" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." @@ -163,8 +167,8 @@ msgstr "Anarlog needs access to your microphone and system audio to record and t msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "Anarlog will sync your calendar to get meeting reminders" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "API Key" @@ -233,15 +237,11 @@ msgstr "Automatically stop listening when the meeting app releases the microphon msgid "Back" msgstr "Back" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "Base URL" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "Batch" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "Browse" @@ -261,6 +261,10 @@ msgstr "Calendar" msgid "Calendar connected" msgstr "Calendar connected" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "Can transcribe while the meeting is happening." + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "Delete All Recurring Events" msgid "Delete Event" msgstr "Delete Event" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "Delete model" @@ -541,7 +545,7 @@ msgstr "Don't save" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "Don't show notifications when Do-Not-Disturb is enabled on your system" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "Download" @@ -583,7 +587,7 @@ msgstr "Enhance contact" msgid "Enhance contact {label}" msgstr "Enhance contact {label}" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "Enter a model identifier" @@ -595,11 +599,11 @@ msgstr "Enter a valid date and time" msgid "Enter template title" msgstr "Enter template title" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "Enter your API key" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "Enter your API key (optional)" @@ -861,6 +865,10 @@ msgstr "Light" msgid "LinkedIn" msgstr "LinkedIn" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "Live" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "Loading calendars..." @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "Microphone detection" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "Model being used" @@ -1236,7 +1244,7 @@ msgstr "Preparing transcript..." msgid "Previous match" msgstr "Previous match" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "Pro" @@ -1248,10 +1256,6 @@ msgstr "Pro trial" msgid "Ready to go" msgstr "Ready to go" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "Realtime" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "Recent" @@ -1362,6 +1366,11 @@ msgstr "Respect Do-Not-Disturb mode" msgid "Retry" msgstr "Retry" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "Runs after the recording finishes, not during the meeting." + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "Save" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "Select a different folder" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "Select a model" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "Select a person to view details" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "Select a provider" @@ -1528,7 +1537,7 @@ msgstr "Show Event" msgid "Show floating bar" msgstr "Show floating bar" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "Show in Finder" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "Upgrade to Pro for {0}" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "Upgrade to Pro to use this provider." -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "Upgrade to use" diff --git a/apps/desktop/src/i18n/locales/en/messages.ts b/apps/desktop/src/i18n/locales/en/messages.ts index 31f682aa73..0f59251b94 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Main language\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Add language\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start when meeting begins\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"The main language is always included for transcription\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Add spoken language\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Search language...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Language & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Share usage data\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatically start listening when an event-backed note reaches its scheduled start time.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatically stop listening when the meeting app releases the microphone.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Show the compact floating control while listening.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional spoken languages\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Always ready without manually launching.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog at login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Language for summaries, chats, and AI-generated responses\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stop when meeting ends\"],\"jzmguI\":[\"Meetings\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"No matching languages found\"],\"k_sb6z\":[\"Select language\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send anonymous usage analytics to help improve Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Main language\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Add language\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start when meeting begins\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"The main language is always included for transcription\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Add spoken language\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Search language...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Language & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Share usage data\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatically start listening when an event-backed note reaches its scheduled start time.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatically stop listening when the meeting app releases the microphone.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Show the compact floating control while listening.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional spoken languages\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Always ready without manually launching.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog at login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Language for summaries, chats, and AI-generated responses\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stop when meeting ends\"],\"jzmguI\":[\"Meetings\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"No matching languages found\"],\"k_sb6z\":[\"Select language\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send anonymous usage analytics to help improve Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/es/messages.po b/apps/desktop/src/i18n/locales/es/messages.po index 8e0fa3c569..3c308d968d 100644 --- a/apps/desktop/src/i18n/locales/es/messages.po +++ b/apps/desktop/src/i18n/locales/es/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Añadir idioma hablado" msgid "Additional spoken languages" msgstr "Idiomas hablados adicionales" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Dejar de escuchar automáticamente cuando la app de reuniones libere el msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Mostrar barra flotante" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/es/messages.ts b/apps/desktop/src/i18n/locales/es/messages.ts index 5fd6ea5ef6..97583428e6 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Idioma principal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Añadir idioma\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar cuando comience la reunión\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"El idioma principal siempre se incluye para la transcripción\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Añadir idioma hablado\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Buscar idioma...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Idioma y región\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Datos\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicación\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Comenzar a escuchar automáticamente cuando una nota vinculada a un evento llegue a su hora de inicio programada.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Dejar de escuchar automáticamente cuando la app de reuniones libere el micrófono.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Mostrar el control flotante compacto mientras escucha.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas hablados adicionales\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Siempre listo sin iniciarlo manualmente.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Iniciar Anarlog al iniciar sesión\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Idioma para resúmenes, chats y respuestas generadas por IA\"],\"iDNBZe\":[\"Notificaciones\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Detener cuando termine la reunión\"],\"jzmguI\":[\"Reuniones\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"No se encontraron idiomas coincidentes\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Mostrar barra flotante\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Enviar análisis de uso anónimos para ayudar a mejorar Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Idioma principal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Añadir idioma\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar cuando comience la reunión\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"El idioma principal siempre se incluye para la transcripción\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Añadir idioma hablado\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Buscar idioma...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Idioma y región\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Datos\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicación\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Comenzar a escuchar automáticamente cuando una nota vinculada a un evento llegue a su hora de inicio programada.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Dejar de escuchar automáticamente cuando la app de reuniones libere el micrófono.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Mostrar el control flotante compacto mientras escucha.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas hablados adicionales\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Siempre listo sin iniciarlo manualmente.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Iniciar Anarlog al iniciar sesión\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Idioma para resúmenes, chats y respuestas generadas por IA\"],\"iDNBZe\":[\"Notificaciones\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Detener cuando termine la reunión\"],\"jzmguI\":[\"Reuniones\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"No se encontraron idiomas coincidentes\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Enviar análisis de uso anónimos para ayudar a mejorar Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/et/messages.po b/apps/desktop/src/i18n/locales/et/messages.po index bdb7126286..b41150171a 100644 --- a/apps/desktop/src/i18n/locales/et/messages.po +++ b/apps/desktop/src/i18n/locales/et/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Lisage kõnekeel" msgid "Additional spoken languages" msgstr "Täiendavad kõnekeeled" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Lõpetage kuulamine automaatselt, kui koosolekurakendus mikrofoni vabast msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Kuva ujuv riba" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/et/messages.ts b/apps/desktop/src/i18n/locales/et/messages.ts index 6bb1e29c32..e95fe592be 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Põhikeel\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisage keel\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Alusta koosoleku alguses\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Põhikeel on alati transkriptsiooni jaoks kaasas\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Lisage kõnekeel\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Otsingukeel...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Keel ja piirkond\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kasutusandmete jagamine\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Andmed\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Rakendus\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Alustage automaatselt kuulamist, kui sündmusega tagatud noot jõuab oma kavandatud algusaega.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Lõpetage kuulamine automaatselt, kui koosolekurakendus mikrofoni vabastab.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Kuulamise ajal kompaktse ujuva juhtelemendi kuvamine.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Täiendavad kõnekeeled\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Alati valmis ilma käsitsi käivitamata.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Käivitage sisselogimisel Anarlog\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Kokkuvõtete, vestluste ja tehisintellekti loodud vastuste keel\"],\"iDNBZe\":[\"Märguanded\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Peatage koosoleku lõppedes\"],\"jzmguI\":[\"Koosolekud\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Sobivaid keeli ei leitud\"],\"k_sb6z\":[\"Valige keel\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Kuva ujuv riba\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Saatke anonüümseid kasutusanalüüse, et aidata Anarlogi täiustada.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Põhikeel\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisage keel\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Alusta koosoleku alguses\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Põhikeel on alati transkriptsiooni jaoks kaasas\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Lisage kõnekeel\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Otsingukeel...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Keel ja piirkond\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kasutusandmete jagamine\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Andmed\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Rakendus\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Alustage automaatselt kuulamist, kui sündmusega tagatud noot jõuab oma kavandatud algusaega.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Lõpetage kuulamine automaatselt, kui koosolekurakendus mikrofoni vabastab.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Kuulamise ajal kompaktse ujuva juhtelemendi kuvamine.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Täiendavad kõnekeeled\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Alati valmis ilma käsitsi käivitamata.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Käivitage sisselogimisel Anarlog\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Kokkuvõtete, vestluste ja tehisintellekti loodud vastuste keel\"],\"iDNBZe\":[\"Märguanded\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Peatage koosoleku lõppedes\"],\"jzmguI\":[\"Koosolekud\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Sobivaid keeli ei leitud\"],\"k_sb6z\":[\"Valige keel\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Saatke anonüümseid kasutusanalüüse, et aidata Anarlogi täiustada.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/eu/messages.po b/apps/desktop/src/i18n/locales/eu/messages.po index d9a70d585e..b5a4981442 100644 --- a/apps/desktop/src/i18n/locales/eu/messages.po +++ b/apps/desktop/src/i18n/locales/eu/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Gehitu ahozko hizkuntza" msgid "Additional spoken languages" msgstr "Ahozko hizkuntza gehigarriak" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Utzi automatikoki entzuteari bilera-aplikazioak mikrofonoa askatzen duen msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Erakutsi barra mugikorra" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/eu/messages.ts b/apps/desktop/src/i18n/locales/eu/messages.ts index 7f2c076bef..004691a363 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hizkuntza nagusia\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Gehitu hizkuntza\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Hasi bilera hasten denean\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Hizkuntza nagusia beti sartzen da transkripzioa egiteko\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Gehitu ahozko hizkuntza\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Bilatu hizkuntza...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Hizkuntza eta eskualdea\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Partekatu erabilera datuak\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Datuak\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikazioa\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Hasi automatikoki entzuten gertaerak babestutako ohar bat programatutako hasiera-orura iristen denean.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Utzi automatikoki entzuteari bilera-aplikazioak mikrofonoa askatzen duenean.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Erakutsi kontrol mugikor trinkoa entzuten duzun bitartean.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ahozko hizkuntza gehigarriak\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Beti prest eskuz abiarazi gabe.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Hasi Anarlog saioa hasten denean\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Laburpenetarako, txatetarako eta AI bidez sortutako erantzunetarako hizkuntza\"],\"iDNBZe\":[\"Jakinarazpenak\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Gelditu bilera amaitzen denean\"],\"jzmguI\":[\"Bilkurak\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ez da bat datorren hizkuntzarik aurkitu\"],\"k_sb6z\":[\"Hautatu hizkuntza\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Erakutsi barra mugikorra\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Bidali erabilera-analisi anonimoak Anarlog hobetzen laguntzeko.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hizkuntza nagusia\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Gehitu hizkuntza\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Hasi bilera hasten denean\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Hizkuntza nagusia beti sartzen da transkripzioa egiteko\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Gehitu ahozko hizkuntza\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Bilatu hizkuntza...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Hizkuntza eta eskualdea\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Partekatu erabilera datuak\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Datuak\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikazioa\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Hasi automatikoki entzuten gertaerak babestutako ohar bat programatutako hasiera-orura iristen denean.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Utzi automatikoki entzuteari bilera-aplikazioak mikrofonoa askatzen duenean.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Erakutsi kontrol mugikor trinkoa entzuten duzun bitartean.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ahozko hizkuntza gehigarriak\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Beti prest eskuz abiarazi gabe.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Hasi Anarlog saioa hasten denean\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Laburpenetarako, txatetarako eta AI bidez sortutako erantzunetarako hizkuntza\"],\"iDNBZe\":[\"Jakinarazpenak\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Gelditu bilera amaitzen denean\"],\"jzmguI\":[\"Bilkurak\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ez da bat datorren hizkuntzarik aurkitu\"],\"k_sb6z\":[\"Hautatu hizkuntza\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Bidali erabilera-analisi anonimoak Anarlog hobetzen laguntzeko.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fa/messages.po b/apps/desktop/src/i18n/locales/fa/messages.po index ca45e465f0..7c417c29b0 100644 --- a/apps/desktop/src/i18n/locales/fa/messages.po +++ b/apps/desktop/src/i18n/locales/fa/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "افزودن زبان گفتاری" msgid "Additional spoken languages" msgstr "زبان‌های گفتاری دیگر" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "وقتی برنامه جلسه میکروفون را آزاد می‌ک msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "نمایش نوار شناور" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fa/messages.ts b/apps/desktop/src/i18n/locales/fa/messages.ts index 55ff53d1c7..40d91816e9 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"زبان اصلی\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"افزودن زبان\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"با شروع جلسه شروع شود\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"زبان اصلی همیشه برای رونویسی گنجانده شده است\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"افزودن زبان گفتاری\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"زبان جستجو...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"زبان و منطقه\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"به اشتراک گذاری داده های استفاده\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"داده\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"برنامه\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"وقتی یادداشت دارای پشتوانه رویداد به زمان شروع برنامه‌ریزی‌شده خود رسید، به‌طور خودکار گوش دادن را شروع کنید.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"وقتی برنامه جلسه میکروفون را آزاد می‌کند، به‌طور خودکار گوش دادن را متوقف کنید.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"کنترل شناور فشرده را هنگام گوش دادن نشان دهید.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"زبان‌های گفتاری دیگر\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"همیشه بدون راه‌اندازی دستی آماده است.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Anarlog را با ورود شروع کنید\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"زبان خلاصه‌ها، چت‌ها و پاسخ‌های ایجاد شده توسط هوش مصنوعی\"],\"iDNBZe\":[\"اعلان‌ها\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"وقتی جلسه تمام شد متوقف شود\"],\"jzmguI\":[\"جلسات\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"هیچ زبان منطبقی یافت نشد\"],\"k_sb6z\":[\"زبان را انتخاب کنید\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"نمایش نوار شناور\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"تحلیل استفاده ناشناس را برای کمک به بهبود Anarlog ارسال کنید.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"زبان اصلی\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"افزودن زبان\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"با شروع جلسه شروع شود\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"زبان اصلی همیشه برای رونویسی گنجانده شده است\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"افزودن زبان گفتاری\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"زبان جستجو...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"زبان و منطقه\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"به اشتراک گذاری داده های استفاده\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"داده\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"برنامه\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"وقتی یادداشت دارای پشتوانه رویداد به زمان شروع برنامه‌ریزی‌شده خود رسید، به‌طور خودکار گوش دادن را شروع کنید.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"وقتی برنامه جلسه میکروفون را آزاد می‌کند، به‌طور خودکار گوش دادن را متوقف کنید.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"کنترل شناور فشرده را هنگام گوش دادن نشان دهید.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"زبان‌های گفتاری دیگر\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"همیشه بدون راه‌اندازی دستی آماده است.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Anarlog را با ورود شروع کنید\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"زبان خلاصه‌ها، چت‌ها و پاسخ‌های ایجاد شده توسط هوش مصنوعی\"],\"iDNBZe\":[\"اعلان‌ها\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"وقتی جلسه تمام شد متوقف شود\"],\"jzmguI\":[\"جلسات\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"هیچ زبان منطبقی یافت نشد\"],\"k_sb6z\":[\"زبان را انتخاب کنید\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"تحلیل استفاده ناشناس را برای کمک به بهبود Anarlog ارسال کنید.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ff/messages.po b/apps/desktop/src/i18n/locales/ff/messages.po index f11a930b18..2523da721e 100644 --- a/apps/desktop/src/i18n/locales/ff/messages.po +++ b/apps/desktop/src/i18n/locales/ff/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ɓeydu ɗemngal haalteengal" msgid "Additional spoken languages" msgstr "Ɗemɗe kaaleteeɗe ɓeydaaɗe" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Woppu heɗtaade otomatik so app pottital ngal yaltinii mikroo." msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Hollit barme ɓuuɓɗo" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ff/messages.ts b/apps/desktop/src/i18n/locales/ff/messages.ts index f343903b80..66b141a047 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ɗemngal mawngal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ɓeydu ɗemngal\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fuɗɗo so batu fuɗɗiima\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ɗemngal mawngal ina heen sahaa kala ngam winndude\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ɓeydu ɗemngal haalteengal\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Ɗemngal njiylawu...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ɗemngal e Diiwaan\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Renndinde dokke kuutoragol\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dowlaaji\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Kuutorgal\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Fuɗɗoo heɗaade otomatik so winndannde ballitoore kewu yettiima waktu mum puɗɗorɗo.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Woppu heɗtaade otomatik so app pottital ngal yaltinii mikroo.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Hollit jokkorgal ɓuuɓngal compact nde aɗa nana.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ɗemɗe kaaleteeɗe ɓeydaaɗe\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ko hesɗi sahaa kala tawa aɗa uddita e junngo.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Fuɗɗo Anarlog e naatgol\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ɗemngal ngam ciimtol, yeewtere, e jaabawuuli AI\"],\"iDNBZe\":[\"Noddaango\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Darto so batu nguu gasii\"],\"jzmguI\":[\"Kawrital\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ɗemɗe nannduɗe alaa tawaa\"],\"k_sb6z\":[\"Suɓo ɗemngal\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Hollit barme ɓuuɓɗo\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Neldu ƴeewndo kuutoragol ngol anndaaka ngam wallitde moƴƴinde Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ɗemngal mawngal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ɓeydu ɗemngal\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fuɗɗo so batu fuɗɗiima\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ɗemngal mawngal ina heen sahaa kala ngam winndude\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ɓeydu ɗemngal haalteengal\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Ɗemngal njiylawu...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ɗemngal e Diiwaan\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Renndinde dokke kuutoragol\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dowlaaji\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Kuutorgal\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Fuɗɗoo heɗaade otomatik so winndannde ballitoore kewu yettiima waktu mum puɗɗorɗo.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Woppu heɗtaade otomatik so app pottital ngal yaltinii mikroo.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Hollit jokkorgal ɓuuɓngal compact nde aɗa nana.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ɗemɗe kaaleteeɗe ɓeydaaɗe\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ko hesɗi sahaa kala tawa aɗa uddita e junngo.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Fuɗɗo Anarlog e naatgol\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ɗemngal ngam ciimtol, yeewtere, e jaabawuuli AI\"],\"iDNBZe\":[\"Noddaango\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Darto so batu nguu gasii\"],\"jzmguI\":[\"Kawrital\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ɗemɗe nannduɗe alaa tawaa\"],\"k_sb6z\":[\"Suɓo ɗemngal\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Neldu ƴeewndo kuutoragol ngol anndaaka ngam wallitde moƴƴinde Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fi/messages.po b/apps/desktop/src/i18n/locales/fi/messages.po index 7a7a6452fa..2309d2fc27 100644 --- a/apps/desktop/src/i18n/locales/fi/messages.po +++ b/apps/desktop/src/i18n/locales/fi/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Lisää puhuttu kieli" msgid "Additional spoken languages" msgstr "Muita puhuttuja kieliä" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Lopeta kuuntelu automaattisesti, kun kokoussovellus vapauttaa mikrofonin msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Näytä kelluva palkki" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fi/messages.ts b/apps/desktop/src/i18n/locales/fi/messages.ts index e0bcc04c55..ac998a77b8 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Pääkieli\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisää kieli\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aloita kokouksen alkaessa\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Pääkieli on aina mukana transkriptiota varten\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Lisää puhuttu kieli\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Hakukieli...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Kieli ja alue\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Jaa käyttötiedot\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Tiedot\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Sovellus\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Aloita kuuntelu automaattisesti, kun tapahtuman taustalla oleva nuotti saavuttaa ajoitetun alkamisajan.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Lopeta kuuntelu automaattisesti, kun kokoussovellus vapauttaa mikrofonin.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Näytä kompakti kelluva säädin kuunnellessasi.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Muita puhuttuja kieliä\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Aina valmis ilman manuaalista käynnistämistä.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Käynnistä Anarlog sisäänkirjautumisen yhteydessä\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Kieli yhteenvetoja, keskusteluja ja tekoälyn luomia vastauksia varten\"],\"iDNBZe\":[\"Ilmoitukset\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Lopeta, kun kokous päättyy\"],\"jzmguI\":[\"Kokoukset\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Vastaavia kieliä ei löytynyt\"],\"k_sb6z\":[\"Valitse kieli\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Näytä kelluva palkki\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Lähetä anonyymi käyttöanalytiikka auttaaksesi parantamaan Anarlogia.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Pääkieli\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lisää kieli\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aloita kokouksen alkaessa\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Pääkieli on aina mukana transkriptiota varten\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Lisää puhuttu kieli\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Hakukieli...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Kieli ja alue\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Jaa käyttötiedot\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Tiedot\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Sovellus\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Aloita kuuntelu automaattisesti, kun tapahtuman taustalla oleva nuotti saavuttaa ajoitetun alkamisajan.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Lopeta kuuntelu automaattisesti, kun kokoussovellus vapauttaa mikrofonin.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Näytä kompakti kelluva säädin kuunnellessasi.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Muita puhuttuja kieliä\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Aina valmis ilman manuaalista käynnistämistä.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Käynnistä Anarlog sisäänkirjautumisen yhteydessä\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Kieli yhteenvetoja, keskusteluja ja tekoälyn luomia vastauksia varten\"],\"iDNBZe\":[\"Ilmoitukset\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Lopeta, kun kokous päättyy\"],\"jzmguI\":[\"Kokoukset\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Vastaavia kieliä ei löytynyt\"],\"k_sb6z\":[\"Valitse kieli\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Lähetä anonyymi käyttöanalytiikka auttaaksesi parantamaan Anarlogia.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fo/messages.po b/apps/desktop/src/i18n/locales/fo/messages.po index c8d6e58930..2d1cd97aaf 100644 --- a/apps/desktop/src/i18n/locales/fo/messages.po +++ b/apps/desktop/src/i18n/locales/fo/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Legg talumál til" msgid "Additional spoken languages" msgstr "Eyka talumál" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Sjálvvirkandi steðga við at lurta, tá møtiappin sleppur mikrofonini msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Vís flótandi striku" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fo/messages.ts b/apps/desktop/src/i18n/locales/fo/messages.ts index 24fb19410a..bfca99db90 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Høvuðsmál\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg mál til\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrja tá møtið byrjar\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Høvuðsmálið er altíð við til umskriving\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Legg talumál til\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Leitimál...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Mál og øki\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Deil nýtsludátur\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dátur\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Forrit\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Byrja sjálvvirkandi at lurta, tá ein hendingarstuðlaður notur nær sína ásettu byrjanartíð.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Sjálvvirkandi steðga við at lurta, tá møtiappin sleppur mikrofonini.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Vís kompaktu flótandi stýringina, meðan tú lurtar.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Eyka talumál\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Altíð klárur uttan at seta í gongd manuelt.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Byrja Anarlog við innritan\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Mál til samandráttir, kjak og AI-genererað svar\"],\"iDNBZe\":[\"Fráboðanir\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Steðga á, tá ið fundurin endar\"],\"jzmguI\":[\"Fundir\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Einki samsvarandi mál er funnið\"],\"k_sb6z\":[\"Vel mál\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Vís flótandi striku\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send dulnevndar nýtslugreiningar fyri at hjálpa til við at betra um Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Høvuðsmál\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg mál til\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrja tá møtið byrjar\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Høvuðsmálið er altíð við til umskriving\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Legg talumál til\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Leitimál...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Mál og øki\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Deil nýtsludátur\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dátur\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Forrit\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Byrja sjálvvirkandi at lurta, tá ein hendingarstuðlaður notur nær sína ásettu byrjanartíð.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Sjálvvirkandi steðga við at lurta, tá møtiappin sleppur mikrofonini.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Vís kompaktu flótandi stýringina, meðan tú lurtar.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Eyka talumál\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Altíð klárur uttan at seta í gongd manuelt.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Byrja Anarlog við innritan\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Mál til samandráttir, kjak og AI-genererað svar\"],\"iDNBZe\":[\"Fráboðanir\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Steðga á, tá ið fundurin endar\"],\"jzmguI\":[\"Fundir\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Einki samsvarandi mál er funnið\"],\"k_sb6z\":[\"Vel mál\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send dulnevndar nýtslugreiningar fyri at hjálpa til við at betra um Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/fr/messages.po b/apps/desktop/src/i18n/locales/fr/messages.po index 59a9d7da3f..8742bb4107 100644 --- a/apps/desktop/src/i18n/locales/fr/messages.po +++ b/apps/desktop/src/i18n/locales/fr/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ajouter une langue parlée" msgid "Additional spoken languages" msgstr "Langues parlées supplémentaires" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Arrête automatiquement l'écoute lorsque l'application de réunion lib msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Afficher la barre flottante" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/fr/messages.ts b/apps/desktop/src/i18n/locales/fr/messages.ts index 81c3b0e535..ec75a5773f 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Langue principale\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajouter une langue\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Démarrer au début de la réunion\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"La langue principale est toujours incluse pour la transcription\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ajouter une langue parlée\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Rechercher une langue...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Langue et région\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Partager les données d'utilisation\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Données\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Application\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Démarre automatiquement l'écoute lorsqu'une note liée à un événement atteint son heure de début prévue.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Arrête automatiquement l'écoute lorsque l'application de réunion libère le micro.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Afficher le contrôle flottant compact pendant l'écoute.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Langues parlées supplémentaires\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Toujours prêt sans lancement manuel.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Lancer Anarlog à la connexion\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Langue des résumés, discussions et réponses générées par l'IA\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Arrêter à la fin de la réunion\"],\"jzmguI\":[\"Réunions\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Aucune langue correspondante trouvée\"],\"k_sb6z\":[\"Sélectionner une langue\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Afficher la barre flottante\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Envoyer des analyses d'utilisation anonymes pour aider à améliorer Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Langue principale\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajouter une langue\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Démarrer au début de la réunion\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"La langue principale est toujours incluse pour la transcription\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ajouter une langue parlée\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Rechercher une langue...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Langue et région\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Partager les données d'utilisation\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Données\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Application\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Démarre automatiquement l'écoute lorsqu'une note liée à un événement atteint son heure de début prévue.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Arrête automatiquement l'écoute lorsque l'application de réunion libère le micro.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Afficher le contrôle flottant compact pendant l'écoute.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Langues parlées supplémentaires\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Toujours prêt sans lancement manuel.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Lancer Anarlog à la connexion\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Langue des résumés, discussions et réponses générées par l'IA\"],\"iDNBZe\":[\"Notifications\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Arrêter à la fin de la réunion\"],\"jzmguI\":[\"Réunions\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Aucune langue correspondante trouvée\"],\"k_sb6z\":[\"Sélectionner une langue\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Envoyer des analyses d'utilisation anonymes pour aider à améliorer Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ga/messages.po b/apps/desktop/src/i18n/locales/ga/messages.po index 406bfd7bb5..4502b12ba2 100644 --- a/apps/desktop/src/i18n/locales/ga/messages.po +++ b/apps/desktop/src/i18n/locales/ga/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Cuir teanga labhartha leis" msgid "Additional spoken languages" msgstr "Teangacha breise labhartha" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Stop go huathoibríoch den éisteacht nuair a scaoileann an aip cruinnit msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Taispeáin barra ar snámh" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ga/messages.ts b/apps/desktop/src/i18n/locales/ga/messages.ts index b45d6d1d06..a2c2740518 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Príomhtheanga\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Cuir teanga leis\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tosaigh nuair a thosaíonn an cruinniú\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Cuirtear an phríomhtheanga san áireamh le tras-scríobh i gcónaí\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Cuir teanga labhartha leis\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Teanga chuardaigh...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Teanga & Réigiún\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Comhroinn sonraí úsáide\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Sonraí\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aip\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Cuir tús leis an éisteacht go huathoibríoch nuair a shroicheann nóta le tacaíocht imeachta a am tosaithe sceidealaithe.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Stop go huathoibríoch den éisteacht nuair a scaoileann an aip cruinnithe an micreafón.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Taispeáin an dlúthrialtán ar snámh agus tú ag éisteacht.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Teangacha breise labhartha\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Bí réidh i gcónaí gan é a sheoladh de láimh.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Tosaigh Anarlog ag logáil isteach\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Teanga le haghaidh achoimrí, comhráite, agus freagraí a ghintear le AI\"],\"iDNBZe\":[\"Fógraí\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stop nuair a thagann deireadh leis an gcruinniú\"],\"jzmguI\":[\"Cruinnithe\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Níor aimsíodh aon teanga chomhoiriúnach\"],\"k_sb6z\":[\"Roghnaigh teanga\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Taispeáin barra ar snámh\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Seol anailísí úsáide gan ainm chun cabhrú leis an Anarlog a fheabhsú.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Príomhtheanga\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Cuir teanga leis\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tosaigh nuair a thosaíonn an cruinniú\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Cuirtear an phríomhtheanga san áireamh le tras-scríobh i gcónaí\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Cuir teanga labhartha leis\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Teanga chuardaigh...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Teanga & Réigiún\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Comhroinn sonraí úsáide\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Sonraí\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aip\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Cuir tús leis an éisteacht go huathoibríoch nuair a shroicheann nóta le tacaíocht imeachta a am tosaithe sceidealaithe.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Stop go huathoibríoch den éisteacht nuair a scaoileann an aip cruinnithe an micreafón.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Taispeáin an dlúthrialtán ar snámh agus tú ag éisteacht.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Teangacha breise labhartha\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Bí réidh i gcónaí gan é a sheoladh de láimh.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Tosaigh Anarlog ag logáil isteach\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Teanga le haghaidh achoimrí, comhráite, agus freagraí a ghintear le AI\"],\"iDNBZe\":[\"Fógraí\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stop nuair a thagann deireadh leis an gcruinniú\"],\"jzmguI\":[\"Cruinnithe\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Níor aimsíodh aon teanga chomhoiriúnach\"],\"k_sb6z\":[\"Roghnaigh teanga\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Seol anailísí úsáide gan ainm chun cabhrú leis an Anarlog a fheabhsú.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/gl/messages.po b/apps/desktop/src/i18n/locales/gl/messages.po index b3e49adc05..2291e45599 100644 --- a/apps/desktop/src/i18n/locales/gl/messages.po +++ b/apps/desktop/src/i18n/locales/gl/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Engadir idioma falado" msgid "Additional spoken languages" msgstr "Idiomas falados adicionais" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Deixa de escoitar automaticamente cando a aplicación de reunións solte msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Mostrar barra flotante" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/gl/messages.ts b/apps/desktop/src/i18n/locales/gl/messages.ts index c80866b165..7fd3411da5 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Idioma principal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engadir idioma\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comezar cando comece a reunión\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"O idioma principal sempre se inclúe para a transcrición\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Engadir idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Buscar idioma...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Idioma e rexión\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Datos\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicación\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Comezar a escoitar automaticamente cando unha nota apoiada nun evento alcance a súa hora de inicio programada.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Deixa de escoitar automaticamente cando a aplicación de reunións solte o micrófono.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Mostra o control flotante compacto mentres escoitas.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Sempre listo sen iniciar manualmente.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Iniciar Anarlog ao iniciar sesión\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Idioma para resumos, chats e respostas xeradas pola intelixencia artificial\"],\"iDNBZe\":[\"Notificacións\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Para cando remate a reunión\"],\"jzmguI\":[\"Reunións\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Non se atoparon idiomas coincidentes\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Mostrar barra flotante\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Envía análises de uso anónimas para axudar a mellorar Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Idioma principal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engadir idioma\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Comezar cando comece a reunión\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"O idioma principal sempre se inclúe para a transcrición\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Engadir idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Buscar idioma...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Idioma e rexión\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Compartir datos de uso\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Datos\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicación\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Comezar a escoitar automaticamente cando unha nota apoiada nun evento alcance a súa hora de inicio programada.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Deixa de escoitar automaticamente cando a aplicación de reunións solte o micrófono.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Mostra o control flotante compacto mentres escoitas.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Sempre listo sen iniciar manualmente.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Iniciar Anarlog ao iniciar sesión\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Idioma para resumos, chats e respostas xeradas pola intelixencia artificial\"],\"iDNBZe\":[\"Notificacións\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Para cando remate a reunión\"],\"jzmguI\":[\"Reunións\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Non se atoparon idiomas coincidentes\"],\"k_sb6z\":[\"Seleccionar idioma\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Envía análises de uso anónimas para axudar a mellorar Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/gu/messages.po b/apps/desktop/src/i18n/locales/gu/messages.po index 5367f5b9b8..e5865b483f 100644 --- a/apps/desktop/src/i18n/locales/gu/messages.po +++ b/apps/desktop/src/i18n/locales/gu/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "બોલાતી ભાષા ઉમેરો" msgid "Additional spoken languages" msgstr "અતિરિક્ત બોલાતી ભાષાઓ" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "જ્યારે મીટિંગ એપ્લિકેશન મા msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ફ્લોટિંગ બાર બતાવો" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/gu/messages.ts b/apps/desktop/src/i18n/locales/gu/messages.ts index 9719f04d51..91c2c9927c 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"મુખ્ય ભાષા\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ભાષા ઉમેરો\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"મીટિંગ શરૂ થાય ત્યારે શરૂ કરો\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"મુખ્ય ભાષા હંમેશા ટ્રાન્સક્રિપ્શન માટે સમાવવામાં આવે છે\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"બોલાતી ભાષા ઉમેરો\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ભાષા શોધો...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ભાષા અને પ્રદેશ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"વપરાશનો ડેટા શેર કરો\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ડેટા\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"એપ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"જ્યારે ઇવેન્ટ-બેક કરેલ નોંધ તેના નિર્ધારિત પ્રારંભ સમય પર પહોંચે ત્યારે આપમેળે સાંભળવાનું શરૂ કરો.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"જ્યારે મીટિંગ એપ્લિકેશન માઇક્રોફોન રિલીઝ કરે ત્યારે આપમેળે સાંભળવાનું બંધ કરો.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"સાંભળતી વખતે કોમ્પેક્ટ ફ્લોટિંગ કંટ્રોલ બતાવો.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"અતિરિક્ત બોલાતી ભાષાઓ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"મેન્યુઅલી લોન્ચ કર્યા વિના હંમેશા તૈયાર.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"લોગિન પર એનાલોગ શરૂ કરો\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"સારાંશ, ચેટ્સ અને AI-જનરેટેડ પ્રતિસાદો માટેની ભાષા\"],\"iDNBZe\":[\"સૂચના\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"મીટિંગ સમાપ્ત થાય ત્યારે રોકો\"],\"jzmguI\":[\"મીટિંગ્સ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"કોઈ મેળ ખાતી ભાષાઓ મળી નથી\"],\"k_sb6z\":[\"ભાષા પસંદ કરો\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ફ્લોટિંગ બાર બતાવો\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"એનારલોગને બહેતર બનાવવામાં મદદ કરવા માટે અનામી વપરાશ વિશ્લેષણ મોકલો.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"મુખ્ય ભાષા\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ભાષા ઉમેરો\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"મીટિંગ શરૂ થાય ત્યારે શરૂ કરો\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"મુખ્ય ભાષા હંમેશા ટ્રાન્સક્રિપ્શન માટે સમાવવામાં આવે છે\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"બોલાતી ભાષા ઉમેરો\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ભાષા શોધો...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ભાષા અને પ્રદેશ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"વપરાશનો ડેટા શેર કરો\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ડેટા\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"એપ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"જ્યારે ઇવેન્ટ-બેક કરેલ નોંધ તેના નિર્ધારિત પ્રારંભ સમય પર પહોંચે ત્યારે આપમેળે સાંભળવાનું શરૂ કરો.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"જ્યારે મીટિંગ એપ્લિકેશન માઇક્રોફોન રિલીઝ કરે ત્યારે આપમેળે સાંભળવાનું બંધ કરો.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"સાંભળતી વખતે કોમ્પેક્ટ ફ્લોટિંગ કંટ્રોલ બતાવો.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"અતિરિક્ત બોલાતી ભાષાઓ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"મેન્યુઅલી લોન્ચ કર્યા વિના હંમેશા તૈયાર.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"લોગિન પર એનાલોગ શરૂ કરો\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"સારાંશ, ચેટ્સ અને AI-જનરેટેડ પ્રતિસાદો માટેની ભાષા\"],\"iDNBZe\":[\"સૂચના\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"મીટિંગ સમાપ્ત થાય ત્યારે રોકો\"],\"jzmguI\":[\"મીટિંગ્સ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"કોઈ મેળ ખાતી ભાષાઓ મળી નથી\"],\"k_sb6z\":[\"ભાષા પસંદ કરો\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"એનારલોગને બહેતર બનાવવામાં મદદ કરવા માટે અનામી વપરાશ વિશ્લેષણ મોકલો.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ha/messages.po b/apps/desktop/src/i18n/locales/ha/messages.po index 086eb77180..92b58720ca 100644 --- a/apps/desktop/src/i18n/locales/ha/messages.po +++ b/apps/desktop/src/i18n/locales/ha/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ƙara yaren magana" msgid "Additional spoken languages" msgstr "Ƙarin harsunan magana" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Dakatar da saurare ta atomatik lokacin da app ɗin taron ya saki makiruf msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Nuna mashaya mai iyo" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ha/messages.ts b/apps/desktop/src/i18n/locales/ha/messages.ts index 14441f997f..ad7ee59103 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Babban harshe\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ƙara harshe\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fara lokacin da aka fara taro\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Koyaushe ana haɗa babban harshe don rubutawa\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ƙara yaren magana\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Yaren bincike...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Harshe & Yanki\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Raba bayanan amfani\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Bayanai\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Fara sauraro ta atomatik lokacin da bayanin kula da abin ya faru ya kai lokacin farawa da aka tsara.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Dakatar da saurare ta atomatik lokacin da app ɗin taron ya saki makirufo.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Nuna ƙaramin iko mai iyo yayin sauraro.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ƙarin harsunan magana\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Koyaushe a shirye ba tare da ƙaddamar da hannu ba.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Fara Anarlog a login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Harshe don taƙaitawa, taɗi, da martanin AI da aka samar\"],\"iDNBZe\":[\"Sanarwa\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Dakata lokacin da taro ya ƙare\"],\"jzmguI\":[\"Taro\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ba a sami yarukan da suka dace ba\"],\"k_sb6z\":[\"Zaɓi harshe\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Nuna mashaya mai iyo\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Aika bayanan amfani da ba a san su ba don taimakawa inganta Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Babban harshe\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ƙara harshe\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fara lokacin da aka fara taro\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Koyaushe ana haɗa babban harshe don rubutawa\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ƙara yaren magana\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Yaren bincike...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Harshe & Yanki\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Raba bayanan amfani\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Bayanai\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Fara sauraro ta atomatik lokacin da bayanin kula da abin ya faru ya kai lokacin farawa da aka tsara.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Dakatar da saurare ta atomatik lokacin da app ɗin taron ya saki makirufo.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Nuna ƙaramin iko mai iyo yayin sauraro.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ƙarin harsunan magana\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Koyaushe a shirye ba tare da ƙaddamar da hannu ba.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Fara Anarlog a login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Harshe don taƙaitawa, taɗi, da martanin AI da aka samar\"],\"iDNBZe\":[\"Sanarwa\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Dakata lokacin da taro ya ƙare\"],\"jzmguI\":[\"Taro\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ba a sami yarukan da suka dace ba\"],\"k_sb6z\":[\"Zaɓi harshe\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Aika bayanan amfani da ba a san su ba don taimakawa inganta Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/he/messages.po b/apps/desktop/src/i18n/locales/he/messages.po index 7dfbec5b3a..35b4f868e6 100644 --- a/apps/desktop/src/i18n/locales/he/messages.po +++ b/apps/desktop/src/i18n/locales/he/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "הוסף שפה מדוברת" msgid "Additional spoken languages" msgstr "שפות מדוברות נוספות" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "הפסק להאזין באופן אוטומטי כאשר אפליקצי msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "הצג סרגל צף" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/he/messages.ts b/apps/desktop/src/i18n/locales/he/messages.ts index 336859d182..696fa69bcf 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"שפה ראשית\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"הוסף שפה\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"התחל כאשר הפגישה מתחילה\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"השפה הראשית כלולה תמיד לתמלול\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"הוסף שפה מדוברת\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"שפת חיפוש...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"שפה ואזור\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"שתף נתוני שימוש\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"נתונים\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"אפליקציה\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"התחל להאזין באופן אוטומטי כאשר הערה מגובה אירוע מגיעה לזמן ההתחלה המתוכנן שלה.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"הפסק להאזין באופן אוטומטי כאשר אפליקציית הפגישות משחררת את המיקרופון.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"הצג את הבקרה הציפה הקומפקטית תוך כדי האזנה.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"שפות מדוברות נוספות\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"תמיד מוכן ללא הפעלה ידנית.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"התחל אנלוג בכניסה\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"שפה לסיכומים, צ'אטים ותגובות שנוצרו על ידי AI\"],\"iDNBZe\":[\"התראות\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"עצור כאשר הפגישה מסתיימת\"],\"jzmguI\":[\"פגישות\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"לא נמצאו שפות מתאימות\"],\"k_sb6z\":[\"בחר שפה\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"הצג סרגל צף\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"שלח ניתוח שימוש אנונימי כדי לעזור בשיפור Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"שפה ראשית\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"הוסף שפה\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"התחל כאשר הפגישה מתחילה\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"השפה הראשית כלולה תמיד לתמלול\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"הוסף שפה מדוברת\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"שפת חיפוש...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"שפה ואזור\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"שתף נתוני שימוש\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"נתונים\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"אפליקציה\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"התחל להאזין באופן אוטומטי כאשר הערה מגובה אירוע מגיעה לזמן ההתחלה המתוכנן שלה.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"הפסק להאזין באופן אוטומטי כאשר אפליקציית הפגישות משחררת את המיקרופון.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"הצג את הבקרה הציפה הקומפקטית תוך כדי האזנה.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"שפות מדוברות נוספות\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"תמיד מוכן ללא הפעלה ידנית.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"התחל אנלוג בכניסה\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"שפה לסיכומים, צ'אטים ותגובות שנוצרו על ידי AI\"],\"iDNBZe\":[\"התראות\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"עצור כאשר הפגישה מסתיימת\"],\"jzmguI\":[\"פגישות\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"לא נמצאו שפות מתאימות\"],\"k_sb6z\":[\"בחר שפה\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"שלח ניתוח שימוש אנונימי כדי לעזור בשיפור Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hi/messages.po b/apps/desktop/src/i18n/locales/hi/messages.po index ed22c628dd..cae901f306 100644 --- a/apps/desktop/src/i18n/locales/hi/messages.po +++ b/apps/desktop/src/i18n/locales/hi/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "बोली जाने वाली भाषा जोड़ें" msgid "Additional spoken languages" msgstr "अतिरिक्त बोली जाने वाली भाषाएँ" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "जब मीटिंग ऐप माइक्रोफ़ोन ज msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "फ़्लोटिंग बार दिखाएँ" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hi/messages.ts b/apps/desktop/src/i18n/locales/hi/messages.ts index 68846bad02..1729b7a6fd 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोड़ें\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग शुरू होने पर प्रारंभ करें\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"प्रतिलेखन के लिए मुख्य भाषा हमेशा शामिल होती है\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"बोली जाने वाली भाषा जोड़ें\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"खोज भाषा...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"उपयोग डेटा साझा करें\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"डेटा\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ऐप\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"जब कोई ईवेंट-समर्थित नोट अपने निर्धारित प्रारंभ समय पर पहुंचता है तो स्वचालित रूप से सुनना प्रारंभ करें।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"जब मीटिंग ऐप माइक्रोफ़ोन जारी करता है तो स्वचालित रूप से सुनना बंद कर देता है।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"सुनते समय कॉम्पैक्ट फ़्लोटिंग नियंत्रण दिखाएं।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोली जाने वाली भाषाएँ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"मैन्युअल रूप से लॉन्च किए बिना हमेशा तैयार।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"लॉगिन पर अनारलॉग प्रारंभ करें\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"सारांश, चैट और AI-जनरेटेड प्रतिक्रियाओं के लिए भाषा\"],\"iDNBZe\":[\"सूचनाएँ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"मीटिंग ख़त्म होने पर रुकें\"],\"jzmguI\":[\"बैठकें\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"कोई मेल खाती भाषा नहीं मिली\"],\"k_sb6z\":[\"भाषा चुनें\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"फ़्लोटिंग बार दिखाएँ\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"अनारलॉग को बेहतर बनाने में सहायता के लिए अनाम उपयोग विश्लेषण भेजें।\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोड़ें\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग शुरू होने पर प्रारंभ करें\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"प्रतिलेखन के लिए मुख्य भाषा हमेशा शामिल होती है\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"बोली जाने वाली भाषा जोड़ें\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"खोज भाषा...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"उपयोग डेटा साझा करें\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"डेटा\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ऐप\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"जब कोई ईवेंट-समर्थित नोट अपने निर्धारित प्रारंभ समय पर पहुंचता है तो स्वचालित रूप से सुनना प्रारंभ करें।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"जब मीटिंग ऐप माइक्रोफ़ोन जारी करता है तो स्वचालित रूप से सुनना बंद कर देता है।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"सुनते समय कॉम्पैक्ट फ़्लोटिंग नियंत्रण दिखाएं।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोली जाने वाली भाषाएँ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"मैन्युअल रूप से लॉन्च किए बिना हमेशा तैयार।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"लॉगिन पर अनारलॉग प्रारंभ करें\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"सारांश, चैट और AI-जनरेटेड प्रतिक्रियाओं के लिए भाषा\"],\"iDNBZe\":[\"सूचनाएँ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"मीटिंग ख़त्म होने पर रुकें\"],\"jzmguI\":[\"बैठकें\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"कोई मेल खाती भाषा नहीं मिली\"],\"k_sb6z\":[\"भाषा चुनें\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"अनारलॉग को बेहतर बनाने में सहायता के लिए अनाम उपयोग विश्लेषण भेजें।\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hr/messages.po b/apps/desktop/src/i18n/locales/hr/messages.po index 64b4bb2d82..504858f7db 100644 --- a/apps/desktop/src/i18n/locales/hr/messages.po +++ b/apps/desktop/src/i18n/locales/hr/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Dodaj govorni jezik" msgid "Additional spoken languages" msgstr "Dodatni govorni jezici" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Automatski prestani slušati kada aplikacija za sastanke otpusti mikrofo msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Prikaži plutajuću traku" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hr/messages.ts b/apps/desktop/src/i18n/locales/hr/messages.ts index 3eff955316..95d4938268 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Glavni jezik\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodajte jezik\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Počni kada sastanak počne\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Glavni jezik je uvijek uključen za transkripciju\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Traži jezik...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Dijeljenje podataka o korištenju\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Podaci\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikacija\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatski počnite sa slušanjem kada bilješka potkrijepljena događajem dosegne zakazano vrijeme početka.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatski prestani slušati kada aplikacija za sastanke otpusti mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Pokažite kompaktnu lebdeću kontrolu dok slušate.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Uvijek spreman bez ručnog pokretanja.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Jezik za sažetke, razgovore i odgovore generirane umjetnom inteligencijom\"],\"iDNBZe\":[\"Obavijesti\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"k_sb6z\":[\"Odaberite jezik\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Prikaži plutajuću traku\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Šaljite anonimnu analitiku korištenja kako biste poboljšali Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Glavni jezik\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodajte jezik\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Počni kada sastanak počne\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Glavni jezik je uvijek uključen za transkripciju\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Dodaj govorni jezik\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Traži jezik...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Jezik i regija\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Dijeljenje podataka o korištenju\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Podaci\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikacija\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatski počnite sa slušanjem kada bilješka potkrijepljena događajem dosegne zakazano vrijeme početka.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatski prestani slušati kada aplikacija za sastanke otpusti mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Pokažite kompaktnu lebdeću kontrolu dok slušate.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorni jezici\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Uvijek spreman bez ručnog pokretanja.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Pokreni Anarlog pri prijavi\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Jezik za sažetke, razgovore i odgovore generirane umjetnom inteligencijom\"],\"iDNBZe\":[\"Obavijesti\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Zaustavi kada sastanak završi\"],\"jzmguI\":[\"Sastanci\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nije pronađen nijedan odgovarajući jezik\"],\"k_sb6z\":[\"Odaberite jezik\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Šaljite anonimnu analitiku korištenja kako biste poboljšali Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ht/messages.po b/apps/desktop/src/i18n/locales/ht/messages.po index 1416c2d55b..ce8d63aa8b 100644 --- a/apps/desktop/src/i18n/locales/ht/messages.po +++ b/apps/desktop/src/i18n/locales/ht/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ajoute lang ki pale" msgid "Additional spoken languages" msgstr "Anplis lang ki pale" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Otomatikman sispann koute lè aplikasyon reyinyon an lage mikwofòn la." msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Montre ba k ap flote" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ht/messages.ts b/apps/desktop/src/i18n/locales/ht/messages.ts index de9466c7b2..09904e2d95 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lang prensipal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajoute lang\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kòmanse lè reyinyon an kòmanse\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Lang prensipal la toujou enkli pou transkripsyon\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ajoute lang ki pale\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Rechèch lang...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lang ak Rejyon\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Pataje done itilizasyon\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Done\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikasyon\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Otomatikman kòmanse koute lè yon nòt ki apiye yon evènman rive nan lè kòmanse pwograme li a.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Otomatikman sispann koute lè aplikasyon reyinyon an lage mikwofòn la.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Montre kontwòl k ap flote kontra a pandan w ap koute.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Anplis lang ki pale\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Toujou pare san yo pa lanse manyèlman.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Kòmanse Anarlog lè w konekte\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lang pou rezime, chat, ak repons AI te pwodwi\"],\"iDNBZe\":[\"Notifikasyon\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Sispann lè reyinyon an fini\"],\"jzmguI\":[\"Reyinyon\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Okenn lang pa jwenn\"],\"k_sb6z\":[\"Chwazi lang\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Montre ba k ap flote\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Voye analiz itilizasyon anonim pou ede amelyore Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lang prensipal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ajoute lang\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Kòmanse lè reyinyon an kòmanse\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Lang prensipal la toujou enkli pou transkripsyon\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ajoute lang ki pale\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Rechèch lang...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lang ak Rejyon\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Pataje done itilizasyon\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Done\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikasyon\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Otomatikman kòmanse koute lè yon nòt ki apiye yon evènman rive nan lè kòmanse pwograme li a.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Otomatikman sispann koute lè aplikasyon reyinyon an lage mikwofòn la.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Montre kontwòl k ap flote kontra a pandan w ap koute.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Anplis lang ki pale\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Toujou pare san yo pa lanse manyèlman.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Kòmanse Anarlog lè w konekte\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lang pou rezime, chat, ak repons AI te pwodwi\"],\"iDNBZe\":[\"Notifikasyon\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Sispann lè reyinyon an fini\"],\"jzmguI\":[\"Reyinyon\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Okenn lang pa jwenn\"],\"k_sb6z\":[\"Chwazi lang\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Voye analiz itilizasyon anonim pou ede amelyore Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hu/messages.po b/apps/desktop/src/i18n/locales/hu/messages.po index e4936504af..b7d82e7cca 100644 --- a/apps/desktop/src/i18n/locales/hu/messages.po +++ b/apps/desktop/src/i18n/locales/hu/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Beszélt nyelv hozzáadása" msgid "Additional spoken languages" msgstr "További beszélt nyelvek" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "A hallgatás automatikus leállítása, amikor az értekezlet alkalmazá msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Lebegő sáv megjelenítése" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hu/messages.ts b/apps/desktop/src/i18n/locales/hu/messages.ts index 119ac87e95..2b9e6fcd22 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Fő nyelv\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Nyelv hozzáadása\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"A megbeszélés kezdetekor kezdődik\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"A fő nyelv mindig szerepel az átíráshoz\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Beszélt nyelv hozzáadása\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Keresési nyelv...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Nyelv és régió\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Használati adatok megosztása\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Adatok\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Alkalmazás\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatikusan elkezdheti a hallgatást, ha egy eseményhez kapcsolódó hangjegy eléri az ütemezett kezdési időpontját.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"A hallgatás automatikus leállítása, amikor az értekezlet alkalmazás elengedi a mikrofont.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"A kompakt lebegő vezérlő megjelenítése hallgatás közben.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"További beszélt nyelvek\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Mindig készen áll kézi indítás nélkül.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Indítsa el az Anarlogot bejelentkezéskor\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Összefoglalók, csevegések és mesterséges intelligencia által generált válaszok nyelve\"],\"iDNBZe\":[\"Értesítések\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Leállítás az értekezlet végén\"],\"jzmguI\":[\"Találkozók\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nincs megfelelő nyelv\"],\"k_sb6z\":[\"Nyelv kiválasztása\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Lebegő sáv megjelenítése\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anonim használati elemzések küldése az Anarlog fejlesztéséhez.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Fő nyelv\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Nyelv hozzáadása\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"A megbeszélés kezdetekor kezdődik\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"A fő nyelv mindig szerepel az átíráshoz\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Beszélt nyelv hozzáadása\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Keresési nyelv...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Nyelv és régió\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Használati adatok megosztása\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Adatok\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Alkalmazás\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatikusan elkezdheti a hallgatást, ha egy eseményhez kapcsolódó hangjegy eléri az ütemezett kezdési időpontját.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"A hallgatás automatikus leállítása, amikor az értekezlet alkalmazás elengedi a mikrofont.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"A kompakt lebegő vezérlő megjelenítése hallgatás közben.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"További beszélt nyelvek\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Mindig készen áll kézi indítás nélkül.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Indítsa el az Anarlogot bejelentkezéskor\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Összefoglalók, csevegések és mesterséges intelligencia által generált válaszok nyelve\"],\"iDNBZe\":[\"Értesítések\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Leállítás az értekezlet végén\"],\"jzmguI\":[\"Találkozók\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nincs megfelelő nyelv\"],\"k_sb6z\":[\"Nyelv kiválasztása\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anonim használati elemzések küldése az Anarlog fejlesztéséhez.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/hy/messages.po b/apps/desktop/src/i18n/locales/hy/messages.po index 731d0cebe3..8062121dbf 100644 --- a/apps/desktop/src/i18n/locales/hy/messages.po +++ b/apps/desktop/src/i18n/locales/hy/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ավելացնել խոսակցական լեզու" msgid "Additional spoken languages" msgstr "Լրացուցիչ խոսակցական լեզուներ" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Ավտոմատ կերպով դադարեցրեք լսելը, երբ հա msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Ցուցադրել լողացող սանդղակը" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/hy/messages.ts b/apps/desktop/src/i18n/locales/hy/messages.ts index 7bfe6faaa7..05984cb826 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Հիմնական լեզու\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ավելացնել լեզու\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Սկսել, երբ հանդիպումը սկսվի\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Հիմնական լեզուն միշտ ներառված է տառադարձման համար\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ավելացնել խոսակցական լեզու\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Որոնման լեզուն...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Լեզուն և տարածաշրջանը\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Կիսեք օգտագործման տվյալները\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Տվյալներ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Հավելված\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Ավտոմատ կերպով սկսեք լսել, երբ իրադարձություններով ապահովված նշումը հասնում է իր նախատեսված մեկնարկի ժամանակին:\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Ավտոմատ կերպով դադարեցրեք լսելը, երբ հանդիպման հավելվածը թողարկի խոսափողը:\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Ցույց տալ կոմպակտ լողացող կառավարը լսելիս:\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Լրացուցիչ խոսակցական լեզուներ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Միշտ պատրաստ է առանց ձեռքով գործարկելու:\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Մուտք գործեք Anarlog-ը\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ամփոփումների, զրույցների և AI-ի կողմից ստեղծված պատասխանների լեզու\"],\"iDNBZe\":[\"Ծանուցումներ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Դադարեցնել, երբ հանդիպումն ավարտվի\"],\"jzmguI\":[\"Հանդիպումներ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Համապատասխան լեզուներ չեն գտնվել\"],\"k_sb6z\":[\"Ընտրեք լեզուն\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Ցուցադրել լողացող սանդղակը\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Ուղարկեք անանուն օգտագործման վերլուծություններ՝ օգնելու բարելավել Anarlog-ը:\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Հիմնական լեզու\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ավելացնել լեզու\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Սկսել, երբ հանդիպումը սկսվի\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Հիմնական լեզուն միշտ ներառված է տառադարձման համար\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ավելացնել խոսակցական լեզու\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Որոնման լեզուն...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Լեզուն և տարածաշրջանը\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Կիսեք օգտագործման տվյալները\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Տվյալներ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Հավելված\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Ավտոմատ կերպով սկսեք լսել, երբ իրադարձություններով ապահովված նշումը հասնում է իր նախատեսված մեկնարկի ժամանակին:\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Ավտոմատ կերպով դադարեցրեք լսելը, երբ հանդիպման հավելվածը թողարկի խոսափողը:\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Ցույց տալ կոմպակտ լողացող կառավարը լսելիս:\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Լրացուցիչ խոսակցական լեզուներ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Միշտ պատրաստ է առանց ձեռքով գործարկելու:\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Մուտք գործեք Anarlog-ը\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ամփոփումների, զրույցների և AI-ի կողմից ստեղծված պատասխանների լեզու\"],\"iDNBZe\":[\"Ծանուցումներ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Դադարեցնել, երբ հանդիպումն ավարտվի\"],\"jzmguI\":[\"Հանդիպումներ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Համապատասխան լեզուներ չեն գտնվել\"],\"k_sb6z\":[\"Ընտրեք լեզուն\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Ուղարկեք անանուն օգտագործման վերլուծություններ՝ օգնելու բարելավել Anarlog-ը:\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/id/messages.po b/apps/desktop/src/i18n/locales/id/messages.po index a588132de5..9095dc89e6 100644 --- a/apps/desktop/src/i18n/locales/id/messages.po +++ b/apps/desktop/src/i18n/locales/id/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Tambahkan bahasa lisan" msgid "Additional spoken languages" msgstr "Bahasa lisan tambahan" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Secara otomatis berhenti mendengarkan saat aplikasi rapat melepaskan mik msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Tampilkan bilah mengambang" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/id/messages.ts b/apps/desktop/src/i18n/locales/id/messages.ts index 71ae39762f..f693df7212 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Bahasa utama\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkan bahasa\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulai saat rapat dimulai\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Bahasa utama selalu disertakan untuk transkripsi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tambahkan bahasa lisan\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Bahasa penelusuran...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Bagikan data penggunaan\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikasi\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Secara otomatis mulai mendengarkan ketika catatan yang didukung acara mencapai waktu mulai yang dijadwalkan.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Secara otomatis berhenti mendengarkan saat aplikasi rapat melepaskan mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Tampilkan kontrol mengambang ringkas sambil mendengarkan.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa lisan tambahan\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Selalu siap tanpa meluncurkan secara manual.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Mulai Anarlog saat login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Bahasa untuk ringkasan, chat, dan respons yang dihasilkan AI\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Berhenti ketika rapat berakhir\"],\"jzmguI\":[\"Rapat\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Tidak ditemukan bahasa yang cocok\"],\"k_sb6z\":[\"Pilih bahasa\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Tampilkan bilah mengambang\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Kirim analisis penggunaan anonim untuk membantu meningkatkan Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Bahasa utama\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkan bahasa\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulai saat rapat dimulai\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Bahasa utama selalu disertakan untuk transkripsi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tambahkan bahasa lisan\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Bahasa penelusuran...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Bagikan data penggunaan\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikasi\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Secara otomatis mulai mendengarkan ketika catatan yang didukung acara mencapai waktu mulai yang dijadwalkan.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Secara otomatis berhenti mendengarkan saat aplikasi rapat melepaskan mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Tampilkan kontrol mengambang ringkas sambil mendengarkan.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa lisan tambahan\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Selalu siap tanpa meluncurkan secara manual.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Mulai Anarlog saat login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Bahasa untuk ringkasan, chat, dan respons yang dihasilkan AI\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Berhenti ketika rapat berakhir\"],\"jzmguI\":[\"Rapat\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Tidak ditemukan bahasa yang cocok\"],\"k_sb6z\":[\"Pilih bahasa\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Kirim analisis penggunaan anonim untuk membantu meningkatkan Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ig/messages.po b/apps/desktop/src/i18n/locales/ig/messages.po index 53664370a6..3cc5d233fc 100644 --- a/apps/desktop/src/i18n/locales/ig/messages.po +++ b/apps/desktop/src/i18n/locales/ig/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Tinye asụsụ asụ" msgid "Additional spoken languages" msgstr "Asụsụ ndị agbakwunyere" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Kwụsị ige ntị na akpaghị aka mgbe ngwa nzụkọ wepụtara igwe msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Gosi mmanya na-ese n'elu mmiri" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ig/messages.ts b/apps/desktop/src/i18n/locales/ig/messages.ts index 072072db7e..f9a98fb0c4 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Asụsụ isi\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tinye asụsụ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Malite mgbe nzukọ ga-amalite\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"A na-etinyekarị asụsụ isi maka ndegharị\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tinye asụsụ asụ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Chọọ asụsụ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Asụsụ & Mpaghara\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kekọrịta data ojiji\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ngwa\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Bido ige ntị na akpaghị aka mgbe ndetu akwadoro emume ruru oge mbido ahaziri.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Kwụsị ige ntị na akpaghị aka mgbe ngwa nzụkọ wepụtara igwe okwu.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Gosi kọmpat njikwa na-ese n'elu mmiri mgbe ị na-ege ntị.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Asụsụ ndị agbakwunyere\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Na-adị njikere mgbe niile na-ejighi aka malite.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Bido Anarlog na nbanye\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Asụsụ maka nchịkọta, nkata, na nzaghachi AI mepụtara\"],\"iDNBZe\":[\"Ọkwa\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Kwụsị mgbe nzukọ agwụ\"],\"jzmguI\":[\"Nzukọ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ọnweghị asụsụ dabara adaba ahụrụ\"],\"k_sb6z\":[\"Họrọ asụsụ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Gosi mmanya na-ese n'elu mmiri\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Zipu nyocha ojiji na-amaghị aha iji nyere aka melite Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Asụsụ isi\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tinye asụsụ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Malite mgbe nzukọ ga-amalite\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"A na-etinyekarị asụsụ isi maka ndegharị\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tinye asụsụ asụ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Chọọ asụsụ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Asụsụ & Mpaghara\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kekọrịta data ojiji\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ngwa\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Bido ige ntị na akpaghị aka mgbe ndetu akwadoro emume ruru oge mbido ahaziri.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Kwụsị ige ntị na akpaghị aka mgbe ngwa nzụkọ wepụtara igwe okwu.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Gosi kọmpat njikwa na-ese n'elu mmiri mgbe ị na-ege ntị.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Asụsụ ndị agbakwunyere\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Na-adị njikere mgbe niile na-ejighi aka malite.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Bido Anarlog na nbanye\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Asụsụ maka nchịkọta, nkata, na nzaghachi AI mepụtara\"],\"iDNBZe\":[\"Ọkwa\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Kwụsị mgbe nzukọ agwụ\"],\"jzmguI\":[\"Nzukọ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ọnweghị asụsụ dabara adaba ahụrụ\"],\"k_sb6z\":[\"Họrọ asụsụ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Zipu nyocha ojiji na-amaghị aha iji nyere aka melite Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/is/messages.po b/apps/desktop/src/i18n/locales/is/messages.po index 826c033b88..1c355e1741 100644 --- a/apps/desktop/src/i18n/locales/is/messages.po +++ b/apps/desktop/src/i18n/locales/is/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Bæta við töluðu máli" msgid "Additional spoken languages" msgstr "Viðbótar töluð tungumál" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Hættu sjálfkrafa að hlusta þegar fundarforritið sleppir hljóðnema msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Sýna fljótandi stiku" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/is/messages.ts b/apps/desktop/src/i18n/locales/is/messages.ts index 654e6a2c2c..91fcdfe9ec 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Aðaltungumál\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bæta við tungumáli\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrjaðu þegar fundur hefst\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Aðaltungumálið er alltaf innifalið fyrir umritun\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Bæta við töluðu máli\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Leita tungumál...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Tungumál og svæði\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Deildu notkunargögnum\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Gögn\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Byrjaðu sjálfkrafa að hlusta þegar viðburðarstudd glósa nær áætluðum upphafstíma.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Hættu sjálfkrafa að hlusta þegar fundarforritið sleppir hljóðnemanum.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Sýndu fyrirferðarlítið fljótandi stjórn á meðan þú hlustar.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Viðbótar töluð tungumál\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Alltaf tilbúinn án þess að ræsa handvirkt.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Byrjaðu Anarlog við innskráningu\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Tungumál fyrir samantektir, spjall og AI-mynduð svör\"],\"iDNBZe\":[\"Tilkynningar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Hættu þegar fundi lýkur\"],\"jzmguI\":[\"Fundir\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Engin tungumál sem passa við fundust\"],\"k_sb6z\":[\"Veldu tungumál\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Sýna fljótandi stiku\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Sendu nafnlausa notkunargreiningu til að bæta Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Aðaltungumál\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bæta við tungumáli\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Byrjaðu þegar fundur hefst\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Aðaltungumálið er alltaf innifalið fyrir umritun\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Bæta við töluðu máli\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Leita tungumál...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Tungumál og svæði\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Deildu notkunargögnum\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Gögn\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Byrjaðu sjálfkrafa að hlusta þegar viðburðarstudd glósa nær áætluðum upphafstíma.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Hættu sjálfkrafa að hlusta þegar fundarforritið sleppir hljóðnemanum.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Sýndu fyrirferðarlítið fljótandi stjórn á meðan þú hlustar.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Viðbótar töluð tungumál\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Alltaf tilbúinn án þess að ræsa handvirkt.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Byrjaðu Anarlog við innskráningu\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Tungumál fyrir samantektir, spjall og AI-mynduð svör\"],\"iDNBZe\":[\"Tilkynningar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Hættu þegar fundi lýkur\"],\"jzmguI\":[\"Fundir\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Engin tungumál sem passa við fundust\"],\"k_sb6z\":[\"Veldu tungumál\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Sendu nafnlausa notkunargreiningu til að bæta Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/it/messages.po b/apps/desktop/src/i18n/locales/it/messages.po index 37ee07cb8b..b5748b19c9 100644 --- a/apps/desktop/src/i18n/locales/it/messages.po +++ b/apps/desktop/src/i18n/locales/it/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Aggiungi lingua parlata" msgid "Additional spoken languages" msgstr "Lingue parlate aggiuntive" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Interrompi automaticamente l'ascolto quando l'app per riunioni rilascia msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Mostra barra flottante" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/it/messages.ts b/apps/desktop/src/i18n/locales/it/messages.ts index 8d8baa320f..96ec6929c8 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lingua principale\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Aggiungi lingua\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Avvia all'inizio della riunione\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"La lingua principale è sempre inclusa per la trascrizione\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Aggiungi lingua parlata\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Cerca lingua...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lingua e regione\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Condividi dati di utilizzo\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dati\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Avvia automaticamente l'ascolto quando una nota collegata a un evento raggiunge l'orario di inizio programmato.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Interrompi automaticamente l'ascolto quando l'app per riunioni rilascia il microfono.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Mostra il controllo flottante compatto durante l'ascolto.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingue parlate aggiuntive\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Sempre disponibile senza avvio manuale.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Avvia Anarlog all'accesso\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lingua per riepiloghi, chat e risposte generate dall'IA\"],\"iDNBZe\":[\"Notifiche\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Interrompi alla fine della riunione\"],\"jzmguI\":[\"Riunioni\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nessuna lingua corrispondente trovata\"],\"k_sb6z\":[\"Seleziona lingua\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Mostra barra flottante\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Invia analisi anonime sull'utilizzo per aiutare a migliorare Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lingua principale\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Aggiungi lingua\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Avvia all'inizio della riunione\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"La lingua principale è sempre inclusa per la trascrizione\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Aggiungi lingua parlata\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Cerca lingua...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lingua e regione\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Condividi dati di utilizzo\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dati\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Avvia automaticamente l'ascolto quando una nota collegata a un evento raggiunge l'orario di inizio programmato.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Interrompi automaticamente l'ascolto quando l'app per riunioni rilascia il microfono.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Mostra il controllo flottante compatto durante l'ascolto.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingue parlate aggiuntive\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Sempre disponibile senza avvio manuale.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Avvia Anarlog all'accesso\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lingua per riepiloghi, chat e risposte generate dall'IA\"],\"iDNBZe\":[\"Notifiche\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Interrompi alla fine della riunione\"],\"jzmguI\":[\"Riunioni\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nessuna lingua corrispondente trovata\"],\"k_sb6z\":[\"Seleziona lingua\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Invia analisi anonime sull'utilizzo per aiutare a migliorare Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ja/messages.po b/apps/desktop/src/i18n/locales/ja/messages.po index e285e040de..0e8e888ce2 100644 --- a/apps/desktop/src/i18n/locales/ja/messages.po +++ b/apps/desktop/src/i18n/locales/ja/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "音声言語を追加" msgid "Additional spoken languages" msgstr "追加の音声言語" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "会議アプリがマイクを解放すると、自動的にリスニン msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "フローティングバーを表示" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ja/messages.ts b/apps/desktop/src/i18n/locales/ja/messages.ts index 1b21c56dc3..0f5517de2f 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"メイン言語\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"言語を追加\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会議開始時に開始\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"メイン言語は文字起こしに常に含まれます\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"音声言語を追加\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"言語を検索...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"言語と地域\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"使用状況データを共有\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"データ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"アプリ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"予定に紐づいたノートが開始時刻になると、自動的にリスニングを開始します。\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"会議アプリがマイクを解放すると、自動的にリスニングを停止します。\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"リスニング中にコンパクトなフローティングコントロールを表示します。\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"追加の音声言語\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"手動で起動しなくても常に準備できます。\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ログイン時に Anarlog を起動\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"要約、チャット、AI生成応答に使用する言語\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"会議終了時に停止\"],\"jzmguI\":[\"会議\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"一致する言語が見つかりません\"],\"k_sb6z\":[\"言語を選択\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"フローティングバーを表示\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog の改善に役立てるため、匿名の使用状況データを送信します。\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"メイン言語\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"言語を追加\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会議開始時に開始\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"メイン言語は文字起こしに常に含まれます\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"音声言語を追加\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"言語を検索...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"言語と地域\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"使用状況データを共有\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"データ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"アプリ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"予定に紐づいたノートが開始時刻になると、自動的にリスニングを開始します。\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"会議アプリがマイクを解放すると、自動的にリスニングを停止します。\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"リスニング中にコンパクトなフローティングコントロールを表示します。\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"追加の音声言語\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"手動で起動しなくても常に準備できます。\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ログイン時に Anarlog を起動\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"要約、チャット、AI生成応答に使用する言語\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"会議終了時に停止\"],\"jzmguI\":[\"会議\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"一致する言語が見つかりません\"],\"k_sb6z\":[\"言語を選択\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog の改善に役立てるため、匿名の使用状況データを送信します。\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/jv/messages.po b/apps/desktop/src/i18n/locales/jv/messages.po index 20e84837a2..8dd4a6be2e 100644 --- a/apps/desktop/src/i18n/locales/jv/messages.po +++ b/apps/desktop/src/i18n/locales/jv/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Tambahake basa lisan" msgid "Additional spoken languages" msgstr "Basa lisan tambahan" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Otomatis mandheg ngrungokake nalika aplikasi rapat ngeculake mikropon." msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Tampilake bar ngambang" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/jv/messages.ts b/apps/desktop/src/i18n/locales/jv/messages.ts index dcd75d2ff5..acd7a3bd9d 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Basa utama\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah basa\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Miwiti nalika rapat diwiwiti\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Basa utama mesthi kalebu kanggo transkripsi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tambahake basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Telusuri basa...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Basa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Nuduhake data panggunaan\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikasi\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Miwiti kanthi otomatis ngrungokake nalika cathetan sing didhukung acara tekan wektu wiwitan sing dijadwalake.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Otomatis mandheg ngrungokake nalika aplikasi rapat ngeculake mikropon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Tampilake kontrol ngambang kompak nalika ngrungokake.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Tansah siyap tanpa diluncurake kanthi manual.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Mulai Anarlog nalika mlebu\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Basa kanggo ringkesan, obrolan, lan tanggapan sing digawe AI\"],\"iDNBZe\":[\"Kabar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Mandheg nalika rapat rampung\"],\"jzmguI\":[\"Patemon\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ora ditemokake basa sing cocog\"],\"k_sb6z\":[\"Pilih basa\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Tampilake bar ngambang\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Kirim analisis panggunaan anonim kanggo mbantu nambah Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Basa utama\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah basa\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Miwiti nalika rapat diwiwiti\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Basa utama mesthi kalebu kanggo transkripsi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tambahake basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Telusuri basa...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Basa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Nuduhake data panggunaan\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikasi\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Miwiti kanthi otomatis ngrungokake nalika cathetan sing didhukung acara tekan wektu wiwitan sing dijadwalake.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Otomatis mandheg ngrungokake nalika aplikasi rapat ngeculake mikropon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Tampilake kontrol ngambang kompak nalika ngrungokake.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Tansah siyap tanpa diluncurake kanthi manual.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Mulai Anarlog nalika mlebu\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Basa kanggo ringkesan, obrolan, lan tanggapan sing digawe AI\"],\"iDNBZe\":[\"Kabar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Mandheg nalika rapat rampung\"],\"jzmguI\":[\"Patemon\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ora ditemokake basa sing cocog\"],\"k_sb6z\":[\"Pilih basa\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Kirim analisis panggunaan anonim kanggo mbantu nambah Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ka/messages.po b/apps/desktop/src/i18n/locales/ka/messages.po index 53c78bb690..7eb7275214 100644 --- a/apps/desktop/src/i18n/locales/ka/messages.po +++ b/apps/desktop/src/i18n/locales/ka/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "სალაპარაკო ენის დამატება" msgid "Additional spoken languages" msgstr "დამატებითი სალაპარაკო ენები" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "ავტომატურად შეწყვიტოს მოს msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "მცურავი ზოლის ჩვენება" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ka/messages.ts b/apps/desktop/src/i18n/locales/ka/messages.ts index 0b67a6c460..6e66c4bd00 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"მთავარი ენა\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ენის დამატება\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"დაიწყეთ შეხვედრის დაწყებისთანავე\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"მთავარი ენა ყოველთვის შედის ტრანსკრიფციისთვის\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"სალაპარაკო ენის დამატება\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ენის ძიება...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ენა და რეგიონი\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"გამოყენების მონაცემების გაზიარება\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"მონაცემები\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"აპი\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ავტომატურად დაიწყეთ მოსმენა, როდესაც ღონისძიებაზე მხარდაჭერილი ჩანიშვნა მიაღწევს დაგეგმილ დაწყების დროს.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ავტომატურად შეწყვიტოს მოსმენა, როდესაც შეხვედრის აპი გამოუშვებს მიკროფონს.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"კომპაქტური მცურავი მართვის ჩვენება მოსმენისას.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"დამატებითი სალაპარაკო ენები\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ყოველთვის მზადაა ხელით გაშვების გარეშე.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"დაიწყეთ Anarlog შესვლისას\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ენა შეჯამებისთვის, ჩეთებისთვის და AI-ით გენერირებული პასუხებისთვის\"],\"iDNBZe\":[\"შეტყობინებები\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"შეჩერება შეხვედრის დასრულებისას\"],\"jzmguI\":[\"შეხვედრები\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"შესაბამისი ენები ვერ მოიძებნა\"],\"k_sb6z\":[\"აირჩიეთ ენა\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"მცურავი ზოლის ჩვენება\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ანონიმური გამოყენების ანალიტიკის გაგზავნა Anarlog-ის გასაუმჯობესებლად.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"მთავარი ენა\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ენის დამატება\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"დაიწყეთ შეხვედრის დაწყებისთანავე\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"მთავარი ენა ყოველთვის შედის ტრანსკრიფციისთვის\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"სალაპარაკო ენის დამატება\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ენის ძიება...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ენა და რეგიონი\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"გამოყენების მონაცემების გაზიარება\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"მონაცემები\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"აპი\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ავტომატურად დაიწყეთ მოსმენა, როდესაც ღონისძიებაზე მხარდაჭერილი ჩანიშვნა მიაღწევს დაგეგმილ დაწყების დროს.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ავტომატურად შეწყვიტოს მოსმენა, როდესაც შეხვედრის აპი გამოუშვებს მიკროფონს.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"კომპაქტური მცურავი მართვის ჩვენება მოსმენისას.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"დამატებითი სალაპარაკო ენები\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ყოველთვის მზადაა ხელით გაშვების გარეშე.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"დაიწყეთ Anarlog შესვლისას\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ენა შეჯამებისთვის, ჩეთებისთვის და AI-ით გენერირებული პასუხებისთვის\"],\"iDNBZe\":[\"შეტყობინებები\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"შეჩერება შეხვედრის დასრულებისას\"],\"jzmguI\":[\"შეხვედრები\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"შესაბამისი ენები ვერ მოიძებნა\"],\"k_sb6z\":[\"აირჩიეთ ენა\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ანონიმური გამოყენების ანალიტიკის გაგზავნა Anarlog-ის გასაუმჯობესებლად.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/kk/messages.po b/apps/desktop/src/i18n/locales/kk/messages.po index 52425f4242..dfc9692eab 100644 --- a/apps/desktop/src/i18n/locales/kk/messages.po +++ b/apps/desktop/src/i18n/locales/kk/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Сөйлеу тілін қосу" msgid "Additional spoken languages" msgstr "Қосымша ауызекі тілдер" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Кездесу қолданбасы микрофонды шығарға msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Қалқымалы жолақты көрсету" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/kk/messages.ts b/apps/desktop/src/i18n/locales/kk/messages.ts index b4b5489b89..2b04a30130 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Негізгі тіл\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тілді қосу\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Кездесу басталғанда бастаңыз\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Негізгі тіл әрқашан транскрипция үшін қосылады\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Сөйлеу тілін қосу\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Іздеу тілі...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Тіл және аймақ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Пайдалану деректерін бөлісу\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Деректер\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Қолданба\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Оқиғаға негізделген жазба жоспарланған басталу уақытына жеткенде тыңдауды автоматты түрде бастаңыз.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Кездесу қолданбасы микрофонды шығарған кезде тыңдауды автоматты түрде тоқтатыңыз.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Тыңдау кезінде ықшам қалқымалы басқару элементін көрсетіңіз.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Қосымша ауызекі тілдер\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Қолмен іске қоспай-ақ әрқашан дайын.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Кіру кезінде Anarlog іске қосыңыз\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Қорытындыларға, чаттарға және AI жасаған жауаптарға арналған тіл\"],\"iDNBZe\":[\"Хабарландырулар\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Кездесу аяқталғанда тоқтатыңыз\"],\"jzmguI\":[\"Кездесулер\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Сәйкес тіл табылмады\"],\"k_sb6z\":[\"Тілді таңдаңыз\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Қалқымалы жолақты көрсету\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog-ті жақсартуға көмектесу үшін анонимді пайдалану аналитикасын жіберіңіз.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Негізгі тіл\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тілді қосу\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Кездесу басталғанда бастаңыз\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Негізгі тіл әрқашан транскрипция үшін қосылады\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Сөйлеу тілін қосу\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Іздеу тілі...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Тіл және аймақ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Пайдалану деректерін бөлісу\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Деректер\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Қолданба\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Оқиғаға негізделген жазба жоспарланған басталу уақытына жеткенде тыңдауды автоматты түрде бастаңыз.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Кездесу қолданбасы микрофонды шығарған кезде тыңдауды автоматты түрде тоқтатыңыз.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Тыңдау кезінде ықшам қалқымалы басқару элементін көрсетіңіз.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Қосымша ауызекі тілдер\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Қолмен іске қоспай-ақ әрқашан дайын.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Кіру кезінде Anarlog іске қосыңыз\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Қорытындыларға, чаттарға және AI жасаған жауаптарға арналған тіл\"],\"iDNBZe\":[\"Хабарландырулар\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Кездесу аяқталғанда тоқтатыңыз\"],\"jzmguI\":[\"Кездесулер\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Сәйкес тіл табылмады\"],\"k_sb6z\":[\"Тілді таңдаңыз\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog-ті жақсартуға көмектесу үшін анонимді пайдалану аналитикасын жіберіңіз.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/km/messages.po b/apps/desktop/src/i18n/locales/km/messages.po index 50df108284..9903d2de15 100644 --- a/apps/desktop/src/i18n/locales/km/messages.po +++ b/apps/desktop/src/i18n/locales/km/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "បន្ថែមភាសានិយាយ" msgid "Additional spoken languages" msgstr "ភាសានិយាយបន្ថែម" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "បញ្ឈប់ការស្តាប់ដោយស្វ័យប msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "បង្ហាញរបារអណ្តែតទឹក" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/km/messages.ts b/apps/desktop/src/i18n/locales/km/messages.ts index 750a04d6a6..932715d7c8 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ភាសាចម្បង\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"បន្ថែមភាសា\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ចាប់ផ្តើមនៅពេលការប្រជុំចាប់ផ្តើម\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ភាសាចម្បងតែងតែត្រូវបានរួមបញ្ចូលសម្រាប់ការចម្លង\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"បន្ថែមភាសានិយាយ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ភាសាស្វែងរក...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ភាសា និងតំបន់\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ចែករំលែកទិន្នន័យការប្រើប្រាស់\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ទិន្នន័យ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"កម្មវិធី\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ចាប់ផ្តើមស្តាប់ដោយស្វ័យប្រវត្តិ នៅពេលដែលកំណត់ចំណាំដែលគាំទ្រព្រឹត្តិការណ៍ឈានដល់ម៉ោងចាប់ផ្តើមដែលបានកំណត់ពេលរបស់វា។\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"បញ្ឈប់ការស្តាប់ដោយស្វ័យប្រវត្តិ នៅពេលដែលកម្មវិធីប្រជុំបញ្ចេញមីក្រូហ្វូន។\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"បង្ហាញការគ្រប់គ្រងបណ្តែតតូចខណៈពេលកំពុងស្តាប់។\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ភាសានិយាយបន្ថែម\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"រួចរាល់ជានិច្ច ដោយមិនចាំបាច់បើកដំណើរការដោយដៃ។\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ចាប់ផ្តើម Anarlog នៅពេលចូល\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ភាសាសម្រាប់ការសង្ខេប ការជជែក និងការឆ្លើយតបដែលបង្កើតឡើងដោយ AI\"],\"iDNBZe\":[\"ការជូនដំណឹង\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ឈប់នៅពេលការប្រជុំបញ្ចប់\"],\"jzmguI\":[\"ការប្រជុំ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"រកមិនឃើញភាសាដែលត្រូវគ្នាទេ\"],\"k_sb6z\":[\"ជ្រើសរើសភាសា\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"បង្ហាញរបារអណ្តែតទឹក\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ផ្ញើការវិភាគការប្រើប្រាស់អនាមិក ដើម្បីជួយកែលម្អ Anarlog ។\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ភាសាចម្បង\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"បន្ថែមភាសា\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ចាប់ផ្តើមនៅពេលការប្រជុំចាប់ផ្តើម\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ភាសាចម្បងតែងតែត្រូវបានរួមបញ្ចូលសម្រាប់ការចម្លង\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"បន្ថែមភាសានិយាយ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ភាសាស្វែងរក...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ភាសា និងតំបន់\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ចែករំលែកទិន្នន័យការប្រើប្រាស់\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ទិន្នន័យ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"កម្មវិធី\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ចាប់ផ្តើមស្តាប់ដោយស្វ័យប្រវត្តិ នៅពេលដែលកំណត់ចំណាំដែលគាំទ្រព្រឹត្តិការណ៍ឈានដល់ម៉ោងចាប់ផ្តើមដែលបានកំណត់ពេលរបស់វា។\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"បញ្ឈប់ការស្តាប់ដោយស្វ័យប្រវត្តិ នៅពេលដែលកម្មវិធីប្រជុំបញ្ចេញមីក្រូហ្វូន។\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"បង្ហាញការគ្រប់គ្រងបណ្តែតតូចខណៈពេលកំពុងស្តាប់។\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ភាសានិយាយបន្ថែម\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"រួចរាល់ជានិច្ច ដោយមិនចាំបាច់បើកដំណើរការដោយដៃ។\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ចាប់ផ្តើម Anarlog នៅពេលចូល\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ភាសាសម្រាប់ការសង្ខេប ការជជែក និងការឆ្លើយតបដែលបង្កើតឡើងដោយ AI\"],\"iDNBZe\":[\"ការជូនដំណឹង\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ឈប់នៅពេលការប្រជុំបញ្ចប់\"],\"jzmguI\":[\"ការប្រជុំ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"រកមិនឃើញភាសាដែលត្រូវគ្នាទេ\"],\"k_sb6z\":[\"ជ្រើសរើសភាសា\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ផ្ញើការវិភាគការប្រើប្រាស់អនាមិក ដើម្បីជួយកែលម្អ Anarlog ។\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/kn/messages.po b/apps/desktop/src/i18n/locales/kn/messages.po index b07e69f6ed..4073694312 100644 --- a/apps/desktop/src/i18n/locales/kn/messages.po +++ b/apps/desktop/src/i18n/locales/kn/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "ಮಾತನಾಡುವ ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ" msgid "Additional spoken languages" msgstr "ಹೆಚ್ಚುವರಿ ಮಾತನಾಡುವ ಭಾಷೆಗಳು" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "ಮೀಟಿಂಗ್ ಅಪ್ಲಿಕೇಶನ್ ಮೈಕ್ರೊ msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ಫ್ಲೋಟಿಂಗ್ ಬಾರ್ ತೋರಿಸು" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/kn/messages.ts b/apps/desktop/src/i18n/locales/kn/messages.ts index 875619a2f2..06f6dad556 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ಮುಖ್ಯ ಭಾಷೆ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ಸಭೆ ಪ್ರಾರಂಭವಾದಾಗ ಪ್ರಾರಂಭಿಸಿ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ಪ್ರತಿಲೇಖನಕ್ಕಾಗಿ ಮುಖ್ಯ ಭಾಷೆಯನ್ನು ಯಾವಾಗಲೂ ಸೇರಿಸಲಾಗುತ್ತದೆ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"ಮಾತನಾಡುವ ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ಹುಡುಕಾಟ ಭಾಷೆ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ಭಾಷೆ ಮತ್ತು ಪ್ರದೇಶ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ಬಳಕೆಯ ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ಡೇಟಾ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ಅಪ್ಲಿಕೇಶನ್\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ಈವೆಂಟ್-ಬೆಂಬಲಿತ ಟಿಪ್ಪಣಿಯು ಅದರ ನಿಗದಿತ ಪ್ರಾರಂಭದ ಸಮಯವನ್ನು ತಲುಪಿದಾಗ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಆಲಿಸಲು ಪ್ರಾರಂಭಿಸಿ.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ಮೀಟಿಂಗ್ ಅಪ್ಲಿಕೇಶನ್ ಮೈಕ್ರೊಫೋನ್ ಅನ್ನು ಬಿಡುಗಡೆ ಮಾಡಿದಾಗ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಆಲಿಸುವುದನ್ನು ನಿಲ್ಲಿಸಿ.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ಕೇಳುತ್ತಿರುವಾಗ ಕಾಂಪ್ಯಾಕ್ಟ್ ಫ್ಲೋಟಿಂಗ್ ನಿಯಂತ್ರಣವನ್ನು ತೋರಿಸಿ.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ಹೆಚ್ಚುವರಿ ಮಾತನಾಡುವ ಭಾಷೆಗಳು\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ಹಸ್ತಚಾಲಿತವಾಗಿ ಪ್ರಾರಂಭಿಸದೆ ಯಾವಾಗಲೂ ಸಿದ್ಧವಾಗಿದೆ.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ಲಾಗಿನ್‌ನಲ್ಲಿ ಅನಾರ್ಲಾಗ್ ಅನ್ನು ಪ್ರಾರಂಭಿಸಿ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ಸಾರಾಂಶಗಳು, ಚಾಟ್‌ಗಳು ಮತ್ತು AI-ರಚಿಸಿದ ಪ್ರತಿಕ್ರಿಯೆಗಳಿಗಾಗಿ ಭಾಷೆ\"],\"iDNBZe\":[\"ಅಧಿಸೂಚನೆಗಳು\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ಸಭೆಯು ಕೊನೆಗೊಂಡಾಗ ನಿಲ್ಲಿಸಿ\"],\"jzmguI\":[\"ಸಭೆಗಳು\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯ ಭಾಷೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ\"],\"k_sb6z\":[\"ಭಾಷೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ಫ್ಲೋಟಿಂಗ್ ಬಾರ್ ತೋರಿಸು\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog ಸುಧಾರಿಸಲು ಸಹಾಯ ಮಾಡಲು ಅನಾಮಧೇಯ ಬಳಕೆಯ ವಿಶ್ಲೇಷಣೆಗಳನ್ನು ಕಳುಹಿಸಿ.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ಮುಖ್ಯ ಭಾಷೆ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ಸಭೆ ಪ್ರಾರಂಭವಾದಾಗ ಪ್ರಾರಂಭಿಸಿ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ಪ್ರತಿಲೇಖನಕ್ಕಾಗಿ ಮುಖ್ಯ ಭಾಷೆಯನ್ನು ಯಾವಾಗಲೂ ಸೇರಿಸಲಾಗುತ್ತದೆ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"ಮಾತನಾಡುವ ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ಹುಡುಕಾಟ ಭಾಷೆ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ಭಾಷೆ ಮತ್ತು ಪ್ರದೇಶ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ಬಳಕೆಯ ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ಡೇಟಾ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ಅಪ್ಲಿಕೇಶನ್\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ಈವೆಂಟ್-ಬೆಂಬಲಿತ ಟಿಪ್ಪಣಿಯು ಅದರ ನಿಗದಿತ ಪ್ರಾರಂಭದ ಸಮಯವನ್ನು ತಲುಪಿದಾಗ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಆಲಿಸಲು ಪ್ರಾರಂಭಿಸಿ.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ಮೀಟಿಂಗ್ ಅಪ್ಲಿಕೇಶನ್ ಮೈಕ್ರೊಫೋನ್ ಅನ್ನು ಬಿಡುಗಡೆ ಮಾಡಿದಾಗ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಆಲಿಸುವುದನ್ನು ನಿಲ್ಲಿಸಿ.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ಕೇಳುತ್ತಿರುವಾಗ ಕಾಂಪ್ಯಾಕ್ಟ್ ಫ್ಲೋಟಿಂಗ್ ನಿಯಂತ್ರಣವನ್ನು ತೋರಿಸಿ.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ಹೆಚ್ಚುವರಿ ಮಾತನಾಡುವ ಭಾಷೆಗಳು\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ಹಸ್ತಚಾಲಿತವಾಗಿ ಪ್ರಾರಂಭಿಸದೆ ಯಾವಾಗಲೂ ಸಿದ್ಧವಾಗಿದೆ.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ಲಾಗಿನ್‌ನಲ್ಲಿ ಅನಾರ್ಲಾಗ್ ಅನ್ನು ಪ್ರಾರಂಭಿಸಿ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ಸಾರಾಂಶಗಳು, ಚಾಟ್‌ಗಳು ಮತ್ತು AI-ರಚಿಸಿದ ಪ್ರತಿಕ್ರಿಯೆಗಳಿಗಾಗಿ ಭಾಷೆ\"],\"iDNBZe\":[\"ಅಧಿಸೂಚನೆಗಳು\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ಸಭೆಯು ಕೊನೆಗೊಂಡಾಗ ನಿಲ್ಲಿಸಿ\"],\"jzmguI\":[\"ಸಭೆಗಳು\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯ ಭಾಷೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ\"],\"k_sb6z\":[\"ಭಾಷೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog ಸುಧಾರಿಸಲು ಸಹಾಯ ಮಾಡಲು ಅನಾಮಧೇಯ ಬಳಕೆಯ ವಿಶ್ಲೇಷಣೆಗಳನ್ನು ಕಳುಹಿಸಿ.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ko/messages.po b/apps/desktop/src/i18n/locales/ko/messages.po index 3894f02891..f97693e8e6 100644 --- a/apps/desktop/src/i18n/locales/ko/messages.po +++ b/apps/desktop/src/i18n/locales/ko/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "음성 언어 추가" msgid "Additional spoken languages" msgstr "추가 음성 언어" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "회의 앱이 마이크를 해제하면 자동으로 듣기를 중지합 msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "플로팅 바 표시" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ko/messages.ts b/apps/desktop/src/i18n/locales/ko/messages.ts index d217ac1f38..7125559bd2 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"기본 언어\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"언어 추가\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"회의 시작 시 시작\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"기본 언어는 전사에 항상 포함됩니다\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"음성 언어 추가\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"언어 검색...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"언어 및 지역\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"사용 데이터 공유\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"데이터\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"앱\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"일정에 연결된 노트의 시작 시간이 되면 자동으로 듣기를 시작합니다.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"회의 앱이 마이크를 해제하면 자동으로 듣기를 중지합니다.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"듣는 동안 작은 플로팅 컨트롤을 표시합니다.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"추가 음성 언어\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"수동으로 실행하지 않아도 항상 준비됩니다.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"로그인 시 Anarlog 시작\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"요약, 채팅, AI 생성 응답에 사용할 언어\"],\"iDNBZe\":[\"알림\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"회의 종료 시 중지\"],\"jzmguI\":[\"회의\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"일치하는 언어를 찾을 수 없습니다\"],\"k_sb6z\":[\"언어 선택\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"플로팅 바 표시\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog 개선을 위해 익명 사용 분석을 보냅니다.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"기본 언어\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"언어 추가\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"회의 시작 시 시작\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"기본 언어는 전사에 항상 포함됩니다\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"음성 언어 추가\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"언어 검색...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"언어 및 지역\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"사용 데이터 공유\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"데이터\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"앱\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"일정에 연결된 노트의 시작 시간이 되면 자동으로 듣기를 시작합니다.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"회의 앱이 마이크를 해제하면 자동으로 듣기를 중지합니다.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"듣는 동안 작은 플로팅 컨트롤을 표시합니다.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"추가 음성 언어\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"수동으로 실행하지 않아도 항상 준비됩니다.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"로그인 시 Anarlog 시작\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"요약, 채팅, AI 생성 응답에 사용할 언어\"],\"iDNBZe\":[\"알림\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"회의 종료 시 중지\"],\"jzmguI\":[\"회의\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"일치하는 언어를 찾을 수 없습니다\"],\"k_sb6z\":[\"언어 선택\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog 개선을 위해 익명 사용 분석을 보냅니다.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ku/messages.po b/apps/desktop/src/i18n/locales/ku/messages.po index 28fc15a692..3a1e19ca7c 100644 --- a/apps/desktop/src/i18n/locales/ku/messages.po +++ b/apps/desktop/src/i18n/locales/ku/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Zimanê axaftinê lê zêde bike" msgid "Additional spoken languages" msgstr "Zimanên axaftinê yên zêde" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Dema sepana civînê mîkrofonê berdide, bixweber guhdarîkirinê rawes msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Barika herikîn nîşan bide" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ku/messages.ts b/apps/desktop/src/i18n/locales/ku/messages.ts index 0b1d18fe91..9dcaaa0958 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Zimanê sereke\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ziman lê zêde bike\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dema civîn dest pê dike\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Zimanê sereke her tim ji bo transkripsiyonê tê de\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Zimanê axaftinê lê zêde bike\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Zimanê gerînê...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ziman û Herêm\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Daneyên bikaranînê parve bikin\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Daneyên\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Dema ku notek bi piştgiriya bûyerê digihîje dema xweya destpêkê ya plansazkirî, bixweber dest bi guhdarkirinê bike.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Dema sepana civînê mîkrofonê berdide, bixweber guhdarîkirinê rawestîne.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Dema ku guhdarî dike, kontrolê ya kompakt nîşan bide.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zimanên axaftinê yên zêde\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Bêyî destpêkirina bi destan her dem amade ye.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Di têketinê de Anarlogê dest pê bike\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ziman ji bo kurtasî, sohbet û bersivên ku ji hêla AI-ê ve hatî çêkirin\"],\"iDNBZe\":[\"Agahdar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Dema civîn biqede raweste\"],\"jzmguI\":[\"Hevdîtin\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Zimanên lihevhatî nehatin dîtin\"],\"k_sb6z\":[\"Ziman hilbijêre\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Barika herikîn nîşan bide\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Analîzên karanîna nenas bişîne da ku alîkariya baştirkirina Anarlog bike.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Zimanê sereke\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ziman lê zêde bike\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Dema civîn dest pê dike\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Zimanê sereke her tim ji bo transkripsiyonê tê de\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Zimanê axaftinê lê zêde bike\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Zimanê gerînê...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ziman û Herêm\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Daneyên bikaranînê parve bikin\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Daneyên\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Dema ku notek bi piştgiriya bûyerê digihîje dema xweya destpêkê ya plansazkirî, bixweber dest bi guhdarkirinê bike.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Dema sepana civînê mîkrofonê berdide, bixweber guhdarîkirinê rawestîne.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Dema ku guhdarî dike, kontrolê ya kompakt nîşan bide.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zimanên axaftinê yên zêde\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Bêyî destpêkirina bi destan her dem amade ye.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Di têketinê de Anarlogê dest pê bike\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ziman ji bo kurtasî, sohbet û bersivên ku ji hêla AI-ê ve hatî çêkirin\"],\"iDNBZe\":[\"Agahdar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Dema civîn biqede raweste\"],\"jzmguI\":[\"Hevdîtin\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Zimanên lihevhatî nehatin dîtin\"],\"k_sb6z\":[\"Ziman hilbijêre\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Analîzên karanîna nenas bişîne da ku alîkariya baştirkirina Anarlog bike.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ky/messages.po b/apps/desktop/src/i18n/locales/ky/messages.po index 5dab32baeb..6f3163a80a 100644 --- a/apps/desktop/src/i18n/locales/ky/messages.po +++ b/apps/desktop/src/i18n/locales/ky/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Оозеки тилди кошуңуз" msgid "Additional spoken languages" msgstr "Кошумча сүйлөө тилдери" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Жолугушуу колдонмосу микрофонду чыгар msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Калкуучу тилкени көрсөтүү" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ky/messages.ts b/apps/desktop/src/i18n/locales/ky/messages.ts index 3b1b17c34f..6d2db7a6f2 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Негизги тил\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тил кошуу\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Жолугушуу башталганда баштаңыз\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Негизги тил ар дайым транскрипция үчүн камтылган\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Оозеки тилди кошуңуз\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Тилди издөө...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Тил жана аймак\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Колдонуу дайындарын бөлүшүү\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Маалымат\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Колдонмо\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Окуяга негизделген эскертүү пландаштырылган башталуу убактысына жеткенде, автоматтык түрдө угууну баштаңыз.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Жолугушуу колдонмосу микрофонду чыгарганда, угууну автоматтык түрдө токтотот.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Угуу учурунда чакан калкыма башкарууну көрсөтүңүз.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Кошумча сүйлөө тилдери\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Кол менен ишке киргизбестен ар дайым даяр.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Кирүү учурунда Anarlogти баштаңыз\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Кыскача баяндамалар, чаттар жана AI тарабынан түзүлгөн жооптор үчүн тил\"],\"iDNBZe\":[\"Эскертмелер\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Жолугушуу аяктаганда токтоңуз\"],\"jzmguI\":[\"Жолугушуулар\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Дал келген тилдер табылган жок\"],\"k_sb6z\":[\"Тилди тандаңыз\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Калкуучу тилкени көрсөтүү\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog'ту жакшыртууга жардам берүү үчүн анонимдүү колдонуу аналитикасын жөнөтүңүз.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Негизги тил\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тил кошуу\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Жолугушуу башталганда баштаңыз\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Негизги тил ар дайым транскрипция үчүн камтылган\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Оозеки тилди кошуңуз\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Тилди издөө...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Тил жана аймак\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Колдонуу дайындарын бөлүшүү\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Маалымат\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Колдонмо\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Окуяга негизделген эскертүү пландаштырылган башталуу убактысына жеткенде, автоматтык түрдө угууну баштаңыз.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Жолугушуу колдонмосу микрофонду чыгарганда, угууну автоматтык түрдө токтотот.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Угуу учурунда чакан калкыма башкарууну көрсөтүңүз.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Кошумча сүйлөө тилдери\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Кол менен ишке киргизбестен ар дайым даяр.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Кирүү учурунда Anarlogти баштаңыз\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Кыскача баяндамалар, чаттар жана AI тарабынан түзүлгөн жооптор үчүн тил\"],\"iDNBZe\":[\"Эскертмелер\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Жолугушуу аяктаганда токтоңуз\"],\"jzmguI\":[\"Жолугушуулар\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Дал келген тилдер табылган жок\"],\"k_sb6z\":[\"Тилди тандаңыз\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog'ту жакшыртууга жардам берүү үчүн анонимдүү колдонуу аналитикасын жөнөтүңүз.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/la/messages.po b/apps/desktop/src/i18n/locales/la/messages.po index 0bbc584c59..fee8560240 100644 --- a/apps/desktop/src/i18n/locales/la/messages.po +++ b/apps/desktop/src/i18n/locales/la/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Linguam vocalem addere" msgid "Additional spoken languages" msgstr "Additional linguas vocales" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Automatarie auscultare desinunt cum conventus app tortor ligulam remitti msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Ostende vectem nare" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/la/messages.ts b/apps/desktop/src/i18n/locales/la/messages.ts index d57fb1f945..9772422db7 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lingua principalis\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Linguam addere\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Committitur cum conventu incipit\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Praecipua lingua semper includitur in transcriptione\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Linguam vocalem addere\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Quaerere linguam...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lingua & Regio\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Phare usus data\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatarie audire incipit cum res lippus notae attingit ad tempus initium horarium.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatarie auscultare desinunt cum conventus app tortor ligulam remittit.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Monstrare pactionem fluitantem imperium audiendo.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional linguas vocales\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Semper sine manually deductis.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Incipit Anarlog in login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lingua pro summariis, confabulationibus, et responsis generatis AI\"],\"iDNBZe\":[\"Notificationes\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Desine cum fines conventum\"],\"jzmguI\":[\"Placitum\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Non inventae linguae matching\"],\"k_sb6z\":[\"Linguam selectam\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Ostende vectem nare\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Analytica usus anonymi mitte ad meliorem Anarlogum adiuvandum.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lingua principalis\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Linguam addere\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Committitur cum conventu incipit\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Praecipua lingua semper includitur in transcriptione\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Linguam vocalem addere\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Quaerere linguam...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lingua & Regio\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Phare usus data\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatarie audire incipit cum res lippus notae attingit ad tempus initium horarium.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatarie auscultare desinunt cum conventus app tortor ligulam remittit.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Monstrare pactionem fluitantem imperium audiendo.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Additional linguas vocales\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Semper sine manually deductis.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Incipit Anarlog in login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lingua pro summariis, confabulationibus, et responsis generatis AI\"],\"iDNBZe\":[\"Notificationes\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Desine cum fines conventum\"],\"jzmguI\":[\"Placitum\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Non inventae linguae matching\"],\"k_sb6z\":[\"Linguam selectam\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Analytica usus anonymi mitte ad meliorem Anarlogum adiuvandum.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lb/messages.po b/apps/desktop/src/i18n/locales/lb/messages.po index 72b4272cc1..e103b19bf0 100644 --- a/apps/desktop/src/i18n/locales/lb/messages.po +++ b/apps/desktop/src/i18n/locales/lb/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Füügt geschwat Sprooch" msgid "Additional spoken languages" msgstr "Zousätzlech geschwat Sproochen" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Automatesch ophalen ze lauschteren wann d'Versammlungsapp de Mikro eraus msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Schwiewend Bar weisen" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lb/messages.ts b/apps/desktop/src/i18n/locales/lb/messages.ts index a4e52f297d..0a1899cf52 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Haaptsprooch\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprooch derbäi\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wann d'Versammlung ufänkt\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"D'Haaptsprooch ass ëmmer fir Transkriptioun abegraff\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Füügt geschwat Sprooch\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Sich Sprooch...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Sprooch & Regioun\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Verbrauchsdaten deelen\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Daten\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatesch ufänken ze lauschteren wann en Event-gestützten Notiz seng geplangte Startzäit erreecht.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatesch ophalen ze lauschteren wann d'Versammlungsapp de Mikro erausgeet.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Weist déi kompakt schwiewend Kontroll beim Nolauschteren.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zousätzlech geschwat Sproochen\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Immer prett ouni manuell ze starten.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog beim Login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Sprooch fir Zesummefaassungen, Chats, an AI-generéiert Äntwerten\"],\"iDNBZe\":[\"Notifikatiounen\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stopp wann d'Versammlung eriwwer ass\"],\"jzmguI\":[\"Versammlungen\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Keng passende Sprooche fonnt\"],\"k_sb6z\":[\"Sprooch auswielen\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Schwiewend Bar weisen\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send anonym Notzungsanalyse fir Anarlog ze verbesseren.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Haaptsprooch\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Sprooch derbäi\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wann d'Versammlung ufänkt\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"D'Haaptsprooch ass ëmmer fir Transkriptioun abegraff\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Füügt geschwat Sprooch\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Sich Sprooch...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Sprooch & Regioun\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Verbrauchsdaten deelen\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Daten\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatesch ufänken ze lauschteren wann en Event-gestützten Notiz seng geplangte Startzäit erreecht.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatesch ophalen ze lauschteren wann d'Versammlungsapp de Mikro erausgeet.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Weist déi kompakt schwiewend Kontroll beim Nolauschteren.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zousätzlech geschwat Sproochen\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Immer prett ouni manuell ze starten.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog beim Login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Sprooch fir Zesummefaassungen, Chats, an AI-generéiert Äntwerten\"],\"iDNBZe\":[\"Notifikatiounen\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stopp wann d'Versammlung eriwwer ass\"],\"jzmguI\":[\"Versammlungen\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Keng passende Sprooche fonnt\"],\"k_sb6z\":[\"Sprooch auswielen\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send anonym Notzungsanalyse fir Anarlog ze verbesseren.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lg/messages.po b/apps/desktop/src/i18n/locales/lg/messages.po index dafe3c7873..a4baf9d8f0 100644 --- a/apps/desktop/src/i18n/locales/lg/messages.po +++ b/apps/desktop/src/i18n/locales/lg/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ongerako olulimi olwogerwa" msgid "Additional spoken languages" msgstr "Ennimi endala ezoogerwa" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Olekera awo okuwuliriza mu ngeri ey'otoma nga app y'olukiiko efulumya ak msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Laga ebbaala etengejja" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lg/messages.ts b/apps/desktop/src/i18n/locales/lg/messages.ts index c897ce5b25..1b0177d04f 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Olulimi olukulu\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongerako olulimi\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tandika ng'olukiiko lutandise\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Olulimi olukulu bulijjo luteekebwamu okuwandiika\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ongerako olulimi olwogerwa\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Olulimi lw'okunoonya...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Olulimi & Ekitundu\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Gabana data y'enkozesa\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Eby'okunoonyereza\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ekikozesebwa\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Tandika okuwuliriza mu ngeri ey'otoma nga ekiwandiiko ekiwanirirwa ekibaddewo kituuse ku ssaawa yaakyo etegekeddwa okutandika.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Olekera awo okuwuliriza mu ngeri ey'otoma nga app y'olukiiko efulumya akazindaalo.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Laga ekifuga ekitengejja ekitono nga owuliriza.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ennimi endala ezoogerwa\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Bulijjo mwetegefu nga totongozza mu ngalo.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Tandika Anarlog ku kuyingira\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Olulimi lw'ebifunze, okukubaganya ebirowoozo, n'okuddamu okukolebwa AI\"],\"iDNBZe\":[\"Ebimanyisibwa\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Komya ng'olukiiko luwedde\"],\"jzmguI\":[\"Enkiiko\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Tewali nnimi zikwatagana zizuuliddwa\"],\"k_sb6z\":[\"Londa olulimi\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Laga ebbaala etengejja\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Wereza okwekenneenya enkozesa okutali kwa mannya okuyamba okulongoosa Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Olulimi olukulu\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongerako olulimi\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tandika ng'olukiiko lutandise\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Olulimi olukulu bulijjo luteekebwamu okuwandiika\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ongerako olulimi olwogerwa\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Olulimi lw'okunoonya...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Olulimi & Ekitundu\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Gabana data y'enkozesa\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Eby'okunoonyereza\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ekikozesebwa\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Tandika okuwuliriza mu ngeri ey'otoma nga ekiwandiiko ekiwanirirwa ekibaddewo kituuse ku ssaawa yaakyo etegekeddwa okutandika.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Olekera awo okuwuliriza mu ngeri ey'otoma nga app y'olukiiko efulumya akazindaalo.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Laga ekifuga ekitengejja ekitono nga owuliriza.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ennimi endala ezoogerwa\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Bulijjo mwetegefu nga totongozza mu ngalo.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Tandika Anarlog ku kuyingira\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Olulimi lw'ebifunze, okukubaganya ebirowoozo, n'okuddamu okukolebwa AI\"],\"iDNBZe\":[\"Ebimanyisibwa\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Komya ng'olukiiko luwedde\"],\"jzmguI\":[\"Enkiiko\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Tewali nnimi zikwatagana zizuuliddwa\"],\"k_sb6z\":[\"Londa olulimi\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Wereza okwekenneenya enkozesa okutali kwa mannya okuyamba okulongoosa Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ln/messages.po b/apps/desktop/src/i18n/locales/ln/messages.po index f585557e67..916b792035 100644 --- a/apps/desktop/src/i18n/locales/ln/messages.po +++ b/apps/desktop/src/i18n/locales/ln/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Bakisa monoko oyo balobaka" msgid "Additional spoken languages" msgstr "Minoko ya kobakisa oyo balobaka" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Tika koyoka na ndenge ya automatique tango appli ya likita ebimisaka mic msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Lakisa barre oyo ezali kopumbwa" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ln/messages.ts b/apps/desktop/src/i18n/locales/ln/messages.ts index bc357b9dff..21fb6b29fa 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Monoko ya monene\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bakisa monoko\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Banda tango likita ekobanda\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Monoko ya monene ekotisami ntango nyonso mpo na bokomi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Bakisa monoko oyo balobaka\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Boluka monoko...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Monoko & Etuka\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kabola ba données ya bosaleli\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Ba données\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Esaleli\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Banda koyoka na ndenge ya automatique tango note oyo esimbami na likambo ekomi na ngonga na yango ya kobanda oyo esengelaki.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Tika koyoka na ndenge ya automatique tango appli ya likita ebimisaka micro.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Lakisa contrôle flottante compact tango ozali koyoka.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Minoko ya kobakisa oyo balobaka\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ezali ntango nyonso prêt sans lancement manuellement.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Banda Anarlog na bokoti\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Monoko mpo na bokuse, masolo, mpe biyano oyo esalemi na AI\"],\"iDNBZe\":[\"Mayebisi\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Tika tango likita ekosila\"],\"jzmguI\":[\"Makita\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Minoko oyo ekokani ezwami te\"],\"k_sb6z\":[\"Pona monoko\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Lakisa barre oyo ezali kopumbwa\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Tinda ba analyses ya usage anonyme mpo na kosunga kobongisa Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Monoko ya monene\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Bakisa monoko\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Banda tango likita ekobanda\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Monoko ya monene ekotisami ntango nyonso mpo na bokomi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Bakisa monoko oyo balobaka\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Boluka monoko...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Monoko & Etuka\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kabola ba données ya bosaleli\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Ba données\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Esaleli\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Banda koyoka na ndenge ya automatique tango note oyo esimbami na likambo ekomi na ngonga na yango ya kobanda oyo esengelaki.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Tika koyoka na ndenge ya automatique tango appli ya likita ebimisaka micro.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Lakisa contrôle flottante compact tango ozali koyoka.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Minoko ya kobakisa oyo balobaka\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ezali ntango nyonso prêt sans lancement manuellement.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Banda Anarlog na bokoti\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Monoko mpo na bokuse, masolo, mpe biyano oyo esalemi na AI\"],\"iDNBZe\":[\"Mayebisi\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Tika tango likita ekosila\"],\"jzmguI\":[\"Makita\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Minoko oyo ekokani ezwami te\"],\"k_sb6z\":[\"Pona monoko\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Tinda ba analyses ya usage anonyme mpo na kosunga kobongisa Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lo/messages.po b/apps/desktop/src/i18n/locales/lo/messages.po index a356fb86d2..7640a84080 100644 --- a/apps/desktop/src/i18n/locales/lo/messages.po +++ b/apps/desktop/src/i18n/locales/lo/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "ເພີ່ມພາສາເວົ້າ" msgid "Additional spoken languages" msgstr "ພາສາເວົ້າເພີ່ມເຕີມ" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "ຢຸດຟັງອັດຕະໂນມັດເມື່ອແອັ msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ສະແດງແຖບເລື່ອນ" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lo/messages.ts b/apps/desktop/src/i18n/locales/lo/messages.ts index ccd60d19ed..e91bf7f70e 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ພາສາຫຼັກ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ເພີ່ມພາສາ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ເລີ່ມເມື່ອການປະຊຸມເລີ່ມຕົ້ນ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ພາສາຫຼັກແມ່ນລວມເຂົ້າກັບການຖອດຂໍ້ຄວາມສະເໝີ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"ເພີ່ມພາສາເວົ້າ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ພາສາຄົ້ນຫາ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ພາສາ ແລະພາກພື້ນ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ແບ່ງປັນຂໍ້ມູນການນຳໃຊ້\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ຂໍ້ມູນ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ແອັບ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ເລີ່ມຟັງອັດຕະໂນມັດເມື່ອບັນທຶກເຫດການທີ່ຮອງຮັບຮອດເວລາເລີ່ມຕົ້ນທີ່ກຳນົດໄວ້.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ຢຸດຟັງອັດຕະໂນມັດເມື່ອແອັບປະຊຸມປ່ອຍໄມໂຄຣໂຟນ.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ສະແດງການຄວບຄຸມການລອຍຕົວແບບກະທັດຮັດໃນຂະນະທີ່ຟັງ.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ພາສາເວົ້າເພີ່ມເຕີມ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ພ້ອມສະເໝີໂດຍບໍ່ມີການເປີດດ້ວຍຕົນເອງ.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ເລີ່ມ​ຕົ້ນ​ອະນາ​ລັອກ​ທີ່​ເຂົ້າ​ສູ່​ລະ​ບົບ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ພາສາສຳລັບບົດສະຫຼຸບ, ການສົນທະນາ ແລະຄຳຕອບທີ່ສ້າງຂຶ້ນໂດຍ AI\"],\"iDNBZe\":[\"ການແຈ້ງເຕືອນ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ຢຸດເມື່ອການປະຊຸມຈົບລົງ\"],\"jzmguI\":[\"ການປະຊຸມ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ບໍ່ພົບພາສາທີ່ກົງກັນ\"],\"k_sb6z\":[\"ເລືອກພາສາ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ສະແດງແຖບເລື່ອນ\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ສົ່ງການວິເຄາະການນຳໃຊ້ທີ່ບໍ່ເປີດເຜີຍຊື່ເພື່ອຊ່ວຍປັບປຸງ Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ພາສາຫຼັກ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ເພີ່ມພາສາ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ເລີ່ມເມື່ອການປະຊຸມເລີ່ມຕົ້ນ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ພາສາຫຼັກແມ່ນລວມເຂົ້າກັບການຖອດຂໍ້ຄວາມສະເໝີ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"ເພີ່ມພາສາເວົ້າ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ພາສາຄົ້ນຫາ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ພາສາ ແລະພາກພື້ນ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ແບ່ງປັນຂໍ້ມູນການນຳໃຊ້\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ຂໍ້ມູນ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ແອັບ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ເລີ່ມຟັງອັດຕະໂນມັດເມື່ອບັນທຶກເຫດການທີ່ຮອງຮັບຮອດເວລາເລີ່ມຕົ້ນທີ່ກຳນົດໄວ້.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ຢຸດຟັງອັດຕະໂນມັດເມື່ອແອັບປະຊຸມປ່ອຍໄມໂຄຣໂຟນ.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ສະແດງການຄວບຄຸມການລອຍຕົວແບບກະທັດຮັດໃນຂະນະທີ່ຟັງ.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ພາສາເວົ້າເພີ່ມເຕີມ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ພ້ອມສະເໝີໂດຍບໍ່ມີການເປີດດ້ວຍຕົນເອງ.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ເລີ່ມ​ຕົ້ນ​ອະນາ​ລັອກ​ທີ່​ເຂົ້າ​ສູ່​ລະ​ບົບ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ພາສາສຳລັບບົດສະຫຼຸບ, ການສົນທະນາ ແລະຄຳຕອບທີ່ສ້າງຂຶ້ນໂດຍ AI\"],\"iDNBZe\":[\"ການແຈ້ງເຕືອນ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ຢຸດເມື່ອການປະຊຸມຈົບລົງ\"],\"jzmguI\":[\"ການປະຊຸມ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ບໍ່ພົບພາສາທີ່ກົງກັນ\"],\"k_sb6z\":[\"ເລືອກພາສາ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ສົ່ງການວິເຄາະການນຳໃຊ້ທີ່ບໍ່ເປີດເຜີຍຊື່ເພື່ອຊ່ວຍປັບປຸງ Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lt/messages.po b/apps/desktop/src/i18n/locales/lt/messages.po index 71140166d1..4f03fca6e9 100644 --- a/apps/desktop/src/i18n/locales/lt/messages.po +++ b/apps/desktop/src/i18n/locales/lt/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Pridėti šnekamąją kalbą" msgid "Additional spoken languages" msgstr "Papildomos šnekamosios kalbos" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Automatiškai sustabdyti klausymą, kai susitikimo programa atleidžia m msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Rodyti slankią juostą" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lt/messages.ts b/apps/desktop/src/i18n/locales/lt/messages.ts index 5f64a963e1..d5436eb00a 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Pagrindinė kalba\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridėti kalbą\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Pradėkite susitikimo pradžioje\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Pagrindinė kalba visada įtraukiama transkripcijai\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Pridėti šnekamąją kalbą\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Paieškos kalba...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Kalba ir regionas\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Bendrinti naudojimo duomenis\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Duomenys\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Programa\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatiškai pradėkite klausytis, kai įvykiu paremta pastaba pasiekia suplanuotą pradžios laiką.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatiškai sustabdyti klausymą, kai susitikimo programa atleidžia mikrofoną.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Klausydami rodykite kompaktišką slankiojantį valdiklį.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildomos šnekamosios kalbos\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Visada paruoštas nepaleidus rankiniu būdu.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Prisijungę paleiskite Anarlog\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Suvestinių, pokalbių ir dirbtinio intelekto sugeneruotų atsakymų kalba\"],\"iDNBZe\":[\"Pranešimai\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Sustabdykite susitikimui pasibaigus\"],\"jzmguI\":[\"Susitikimai\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nerasta atitinkančių kalbų\"],\"k_sb6z\":[\"Pasirinkite kalbą\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Rodyti slankią juostą\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Siųskite anoniminę naudojimo analizę, kad padėtumėte tobulinti „Anarlog“.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Pagrindinė kalba\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridėti kalbą\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Pradėkite susitikimo pradžioje\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Pagrindinė kalba visada įtraukiama transkripcijai\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Pridėti šnekamąją kalbą\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Paieškos kalba...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Kalba ir regionas\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Bendrinti naudojimo duomenis\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Duomenys\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Programa\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatiškai pradėkite klausytis, kai įvykiu paremta pastaba pasiekia suplanuotą pradžios laiką.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatiškai sustabdyti klausymą, kai susitikimo programa atleidžia mikrofoną.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Klausydami rodykite kompaktišką slankiojantį valdiklį.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildomos šnekamosios kalbos\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Visada paruoštas nepaleidus rankiniu būdu.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Prisijungę paleiskite Anarlog\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Suvestinių, pokalbių ir dirbtinio intelekto sugeneruotų atsakymų kalba\"],\"iDNBZe\":[\"Pranešimai\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Sustabdykite susitikimui pasibaigus\"],\"jzmguI\":[\"Susitikimai\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nerasta atitinkančių kalbų\"],\"k_sb6z\":[\"Pasirinkite kalbą\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Siųskite anoniminę naudojimo analizę, kad padėtumėte tobulinti „Anarlog“.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/lv/messages.po b/apps/desktop/src/i18n/locales/lv/messages.po index 7d650a6d57..ea6952b811 100644 --- a/apps/desktop/src/i18n/locales/lv/messages.po +++ b/apps/desktop/src/i18n/locales/lv/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Pievienojiet runāto valodu" msgid "Additional spoken languages" msgstr "Papildu runātās valodas" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Automātiski pārtraukt klausīšanos, kad sapulces lietotne atbrīvo mi msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Rādīt peldošo joslu" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/lv/messages.ts b/apps/desktop/src/i18n/locales/lv/messages.ts index 868c639386..35afd4feb6 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Galvenā valoda\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pievienot valodu\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Sāciet, kad sākas sapulce\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Transkripcijai vienmēr tiek iekļauta galvenā valoda\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Pievienojiet runāto valodu\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Meklēšanas valoda...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Valoda un reģions\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kopīgojiet lietojuma datus\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dati\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Lietotne\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automātiski sāciet klausīties, kad ar notikumu nodrošināta piezīme sasniedz ieplānoto sākuma laiku.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automātiski pārtraukt klausīšanos, kad sapulces lietotne atbrīvo mikrofonu.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Klausīšanās laikā parādiet kompakto peldošo vadību.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildu runātās valodas\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Vienmēr gatavs bez manuālas palaišanas.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Sāciet Anarlog pie pieteikšanās\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Kopsavilkumu, tērzēšanas un AI ģenerētu atbilžu valoda\"],\"iDNBZe\":[\"Paziņojumi\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Pārtraukt, kad sapulce beidzas\"],\"jzmguI\":[\"Sapulces\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nav atrasta neviena atbilstoša valoda\"],\"k_sb6z\":[\"Atlasiet valodu\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Rādīt peldošo joslu\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Nosūtiet anonīmu lietojuma analīzi, lai palīdzētu uzlabot Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Galvenā valoda\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pievienot valodu\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Sāciet, kad sākas sapulce\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Transkripcijai vienmēr tiek iekļauta galvenā valoda\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Pievienojiet runāto valodu\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Meklēšanas valoda...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Valoda un reģions\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kopīgojiet lietojuma datus\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dati\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Lietotne\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automātiski sāciet klausīties, kad ar notikumu nodrošināta piezīme sasniedz ieplānoto sākuma laiku.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automātiski pārtraukt klausīšanos, kad sapulces lietotne atbrīvo mikrofonu.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Klausīšanās laikā parādiet kompakto peldošo vadību.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Papildu runātās valodas\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Vienmēr gatavs bez manuālas palaišanas.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Sāciet Anarlog pie pieteikšanās\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Kopsavilkumu, tērzēšanas un AI ģenerētu atbilžu valoda\"],\"iDNBZe\":[\"Paziņojumi\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Pārtraukt, kad sapulce beidzas\"],\"jzmguI\":[\"Sapulces\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nav atrasta neviena atbilstoša valoda\"],\"k_sb6z\":[\"Atlasiet valodu\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Nosūtiet anonīmu lietojuma analīzi, lai palīdzētu uzlabot Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mg/messages.po b/apps/desktop/src/i18n/locales/mg/messages.po index aabc5b07c6..84cef3fe49 100644 --- a/apps/desktop/src/i18n/locales/mg/messages.po +++ b/apps/desktop/src/i18n/locales/mg/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ampio fiteny ampiasaina" msgid "Additional spoken languages" msgstr "Fiteny ampiasaina fanampiny" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Atsaharo ho azy ny fihainoana rehefa mamoaka ny mikrô ny fampiharana fi msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Asehoy ny bara mitsingevana" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mg/messages.ts b/apps/desktop/src/i18n/locales/mg/messages.ts index 1bd43fe956..a727f1e421 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Fiteny fototra\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ampio fiteny\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Atombohy rehefa manomboka ny fivoriana\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ampidirina foana ny fiteny fototra ho an'ny fandikana\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ampio fiteny ampiasaina\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Fiteny fikarohana...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Fiteny & Faritra\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Mizara angona fampiasana\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"NY FANAZAVANA\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Manomboka mihaino ho azy rehefa tonga amin'ny ora voatondro hanombohana ny naoty tohanan'ny hetsika.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Atsaharo ho azy ny fihainoana rehefa mamoaka ny mikrô ny fampiharana fivoriana.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Asehoy ny fanaraha-maso mitsingevana kanto eo am-pihainoana.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Fiteny ampiasaina fanampiny\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Vonona foana nefa tsy alefa amin'ny tanana.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Atombohy Anarlog amin'ny fidirana\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Fiteny ho an'ny famintinana, resadresaka, ary valiny azo avy amin'ny AI\"],\"iDNBZe\":[\"Fampandrenesana\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Atsaharo rehefa tapitra ny fivoriana\"],\"jzmguI\":[\"Fihaonana\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Tsy misy fiteny mifanandrify hita\"],\"k_sb6z\":[\"Misafidiana fiteny\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Asehoy ny bara mitsingevana\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Mandefa fanadihadiana momba ny fampiasana tsy mitonona anarana hanampy amin'ny fanatsarana Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Fiteny fototra\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ampio fiteny\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Atombohy rehefa manomboka ny fivoriana\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ampidirina foana ny fiteny fototra ho an'ny fandikana\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ampio fiteny ampiasaina\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Fiteny fikarohana...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Fiteny & Faritra\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Mizara angona fampiasana\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"NY FANAZAVANA\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Manomboka mihaino ho azy rehefa tonga amin'ny ora voatondro hanombohana ny naoty tohanan'ny hetsika.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Atsaharo ho azy ny fihainoana rehefa mamoaka ny mikrô ny fampiharana fivoriana.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Asehoy ny fanaraha-maso mitsingevana kanto eo am-pihainoana.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Fiteny ampiasaina fanampiny\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Vonona foana nefa tsy alefa amin'ny tanana.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Atombohy Anarlog amin'ny fidirana\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Fiteny ho an'ny famintinana, resadresaka, ary valiny azo avy amin'ny AI\"],\"iDNBZe\":[\"Fampandrenesana\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Atsaharo rehefa tapitra ny fivoriana\"],\"jzmguI\":[\"Fihaonana\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Tsy misy fiteny mifanandrify hita\"],\"k_sb6z\":[\"Misafidiana fiteny\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Mandefa fanadihadiana momba ny fampiasana tsy mitonona anarana hanampy amin'ny fanatsarana Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mi/messages.po b/apps/desktop/src/i18n/locales/mi/messages.po index f5363b4c54..877eb6998f 100644 --- a/apps/desktop/src/i18n/locales/mi/messages.po +++ b/apps/desktop/src/i18n/locales/mi/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Taapirihia te reo korero" msgid "Additional spoken languages" msgstr "Apiti atu reo korero" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Kati aunoa te whakarongo ina tukuna e te taupānga hui te hopuoro." msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Whakaatuhia te pae rewa" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mi/messages.ts b/apps/desktop/src/i18n/locales/mi/messages.ts index 85aca5fa16..92e813e5e1 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Te reo matua\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tāpiri reo\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Timata ina timata te hui\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Kei roto tonu te reo matua mo te tuhi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Taapirihia te reo korero\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Rapu reo...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Reo me te Rohe\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Tirihia nga raraunga whakamahinga\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Raraunga\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Taupānga\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Ka timata te whakarongo aunoa ina tae te tuhipoka tautoko takahanga ki tona wa tiimata kua whakaritea.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Kati aunoa te whakarongo ina tukuna e te taupānga hui te hopuoro.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Whakaatuhia te mana maanu kiato i te wa e whakarongo ana.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Apiti atu reo korero\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Kua reri tonu me te kore e whakarewa ringa.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Tīmata Anarlog i te takiuru\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Reo mo nga whakarāpopototanga, nga korerorero, me nga whakautu i hangaia e AI\"],\"iDNBZe\":[\"Whakamōhiotanga\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Kati ina mutu te hui\"],\"jzmguI\":[\"Nga Hui\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Kāore he reo ōrite i kitea\"],\"k_sb6z\":[\"Tīpakohia te reo\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Whakaatuhia te pae rewa\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Tukuna nga tātaritanga whakamahinga ingoamuna hei whakapai ake i te Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Te reo matua\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tāpiri reo\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Timata ina timata te hui\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Kei roto tonu te reo matua mo te tuhi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Taapirihia te reo korero\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Rapu reo...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Reo me te Rohe\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Tirihia nga raraunga whakamahinga\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Raraunga\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Taupānga\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Ka timata te whakarongo aunoa ina tae te tuhipoka tautoko takahanga ki tona wa tiimata kua whakaritea.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Kati aunoa te whakarongo ina tukuna e te taupānga hui te hopuoro.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Whakaatuhia te mana maanu kiato i te wa e whakarongo ana.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Apiti atu reo korero\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Kua reri tonu me te kore e whakarewa ringa.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Tīmata Anarlog i te takiuru\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Reo mo nga whakarāpopototanga, nga korerorero, me nga whakautu i hangaia e AI\"],\"iDNBZe\":[\"Whakamōhiotanga\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Kati ina mutu te hui\"],\"jzmguI\":[\"Nga Hui\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Kāore he reo ōrite i kitea\"],\"k_sb6z\":[\"Tīpakohia te reo\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Tukuna nga tātaritanga whakamahinga ingoamuna hei whakapai ake i te Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mk/messages.po b/apps/desktop/src/i18n/locales/mk/messages.po index 4dedbe461d..9089e9e914 100644 --- a/apps/desktop/src/i18n/locales/mk/messages.po +++ b/apps/desktop/src/i18n/locales/mk/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Додајте говорен јазик" msgid "Additional spoken languages" msgstr "Дополнителни говорни јазици" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Автоматски престанете да слушате кога msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Прикажи пловечка лента" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mk/messages.ts b/apps/desktop/src/i18n/locales/mk/messages.ts index 56acdedcaf..99e6c92728 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Главен јазик\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте јазик\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете кога ќе започне состанокот\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Главниот јазик е секогаш вклучен за транскрипција\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Додајте говорен јазик\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Јазик за пребарување...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Јазик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Споделете податоци за користење\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Податоци\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Апликација\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Автоматски започнете со слушање кога белешката поддржана со настан ќе го достигне планираното време за почеток.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Автоматски престанете да слушате кога апликацијата за состанок ќе го ослободи микрофонот.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Покажете ја компактната пловечка контрола додека слушате.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнителни говорни јазици\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Секогаш подготвен без рачно стартување.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Започнете Anarlog при најавување\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Јазик за резимеа, разговори и одговори генерирани од вештачка интелигенција\"],\"iDNBZe\":[\"Известувања\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Стоп кога ќе заврши состанокот\"],\"jzmguI\":[\"Средби\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Не се најдени јазици што се совпаѓаат\"],\"k_sb6z\":[\"Изберете јазик\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Прикажи пловечка лента\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Испратете анонимна аналитика за користење за да помогнете во подобрувањето на Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Главен јазик\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте јазик\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете кога ќе започне состанокот\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Главниот јазик е секогаш вклучен за транскрипција\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Додајте говорен јазик\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Јазик за пребарување...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Јазик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Споделете податоци за користење\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Податоци\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Апликација\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Автоматски започнете со слушање кога белешката поддржана со настан ќе го достигне планираното време за почеток.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Автоматски престанете да слушате кога апликацијата за состанок ќе го ослободи микрофонот.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Покажете ја компактната пловечка контрола додека слушате.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнителни говорни јазици\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Секогаш подготвен без рачно стартување.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Започнете Anarlog при најавување\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Јазик за резимеа, разговори и одговори генерирани од вештачка интелигенција\"],\"iDNBZe\":[\"Известувања\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Стоп кога ќе заврши состанокот\"],\"jzmguI\":[\"Средби\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Не се најдени јазици што се совпаѓаат\"],\"k_sb6z\":[\"Изберете јазик\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Испратете анонимна аналитика за користење за да помогнете во подобрувањето на Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ml/messages.po b/apps/desktop/src/i18n/locales/ml/messages.po index a1fa9e4335..7ba167867b 100644 --- a/apps/desktop/src/i18n/locales/ml/messages.po +++ b/apps/desktop/src/i18n/locales/ml/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "സംസാരിക്കുന്ന ഭാഷ ചേർക്കു msgid "Additional spoken languages" msgstr "കൂടുതൽ സംസാരിക്കുന്ന ഭാഷകൾ" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "മീറ്റിംഗ് ആപ്പ് മൈക്രോഫോൺ msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ഫ്ലോട്ടിംഗ് ബാർ കാണിക്കുക" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ml/messages.ts b/apps/desktop/src/i18n/locales/ml/messages.ts index d07471c435..a5e1c6c8ca 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"പ്രധാന ഭാഷ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ഭാഷ ചേർക്കുക\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"മീറ്റിംഗ് ആരംഭിക്കുമ്പോൾ ആരംഭിക്കുക\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ട്രാൻസ്ക്രിപ്ഷനായി പ്രധാന ഭാഷ എപ്പോഴും ഉൾപ്പെടുത്തിയിട്ടുണ്ട്\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"സംസാരിക്കുന്ന ഭാഷ ചേർക്കുക\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ഭാഷ തിരയുക...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ഭാഷയും പ്രദേശവും\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ഉപയോഗ ഡാറ്റ പങ്കിടുക\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ഡാറ്റ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ആപ്പ്\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ഒരു ഇവൻ്റ് പിന്തുണയുള്ള കുറിപ്പ് ഷെഡ്യൂൾ ചെയ്ത ആരംഭ സമയത്തിൽ എത്തുമ്പോൾ സ്വയമേവ കേൾക്കാൻ ആരംഭിക്കുക.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"മീറ്റിംഗ് ആപ്പ് മൈക്രോഫോൺ റിലീസ് ചെയ്യുമ്പോൾ കേൾക്കുന്നത് സ്വയമേവ നിർത്തുക.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ശ്രവിക്കുന്ന സമയത്ത് ഒതുക്കമുള്ള ഫ്ലോട്ടിംഗ് നിയന്ത്രണം കാണിക്കുക.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"കൂടുതൽ സംസാരിക്കുന്ന ഭാഷകൾ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"സ്വയം ലോഞ്ച് ചെയ്യാതെ എപ്പോഴും തയ്യാറാണ്.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ലോഗിൻ ചെയ്യുമ്പോൾ അനർലോഗ് ആരംഭിക്കുക\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"സംഗ്രഹങ്ങൾ, ചാറ്റുകൾ, AI സൃഷ്ടിച്ച പ്രതികരണങ്ങൾ എന്നിവയ്ക്കുള്ള ഭാഷ\"],\"iDNBZe\":[\"അറിയിപ്പുകൾ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"മീറ്റിംഗ് അവസാനിക്കുമ്പോൾ നിർത്തുക\"],\"jzmguI\":[\"മീറ്റിംഗുകൾ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"പൊരുത്തമുള്ള ഭാഷകളൊന്നും കണ്ടെത്തിയില്ല\"],\"k_sb6z\":[\"ഭാഷ തിരഞ്ഞെടുക്കുക\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ഫ്ലോട്ടിംഗ് ബാർ കാണിക്കുക\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"അനാർലോഗ് മെച്ചപ്പെടുത്താൻ സഹായിക്കുന്നതിന് അജ്ഞാത ഉപയോഗ അനലിറ്റിക്‌സ് അയയ്‌ക്കുക.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"പ്രധാന ഭാഷ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ഭാഷ ചേർക്കുക\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"മീറ്റിംഗ് ആരംഭിക്കുമ്പോൾ ആരംഭിക്കുക\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ട്രാൻസ്ക്രിപ്ഷനായി പ്രധാന ഭാഷ എപ്പോഴും ഉൾപ്പെടുത്തിയിട്ടുണ്ട്\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"സംസാരിക്കുന്ന ഭാഷ ചേർക്കുക\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ഭാഷ തിരയുക...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ഭാഷയും പ്രദേശവും\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ഉപയോഗ ഡാറ്റ പങ്കിടുക\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ഡാറ്റ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ആപ്പ്\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ഒരു ഇവൻ്റ് പിന്തുണയുള്ള കുറിപ്പ് ഷെഡ്യൂൾ ചെയ്ത ആരംഭ സമയത്തിൽ എത്തുമ്പോൾ സ്വയമേവ കേൾക്കാൻ ആരംഭിക്കുക.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"മീറ്റിംഗ് ആപ്പ് മൈക്രോഫോൺ റിലീസ് ചെയ്യുമ്പോൾ കേൾക്കുന്നത് സ്വയമേവ നിർത്തുക.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ശ്രവിക്കുന്ന സമയത്ത് ഒതുക്കമുള്ള ഫ്ലോട്ടിംഗ് നിയന്ത്രണം കാണിക്കുക.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"കൂടുതൽ സംസാരിക്കുന്ന ഭാഷകൾ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"സ്വയം ലോഞ്ച് ചെയ്യാതെ എപ്പോഴും തയ്യാറാണ്.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ലോഗിൻ ചെയ്യുമ്പോൾ അനർലോഗ് ആരംഭിക്കുക\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"സംഗ്രഹങ്ങൾ, ചാറ്റുകൾ, AI സൃഷ്ടിച്ച പ്രതികരണങ്ങൾ എന്നിവയ്ക്കുള്ള ഭാഷ\"],\"iDNBZe\":[\"അറിയിപ്പുകൾ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"മീറ്റിംഗ് അവസാനിക്കുമ്പോൾ നിർത്തുക\"],\"jzmguI\":[\"മീറ്റിംഗുകൾ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"പൊരുത്തമുള്ള ഭാഷകളൊന്നും കണ്ടെത്തിയില്ല\"],\"k_sb6z\":[\"ഭാഷ തിരഞ്ഞെടുക്കുക\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"അനാർലോഗ് മെച്ചപ്പെടുത്താൻ സഹായിക്കുന്നതിന് അജ്ഞാത ഉപയോഗ അനലിറ്റിക്‌സ് അയയ്‌ക്കുക.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mn/messages.po b/apps/desktop/src/i18n/locales/mn/messages.po index c50f31b032..5d76d9d74f 100644 --- a/apps/desktop/src/i18n/locales/mn/messages.po +++ b/apps/desktop/src/i18n/locales/mn/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ярианы хэл нэмэх" msgid "Additional spoken languages" msgstr "Нэмэлт ярианы хэлүүд" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Уулзалтын апп микрофоноо гаргах үед ав msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Хөвөгч мөрийг харуулах" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mn/messages.ts b/apps/desktop/src/i18n/locales/mn/messages.ts index a4dd187a41..7ddc0f74d2 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Үндсэн хэл\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Хэл нэмэх\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Уулзалт эхлэхэд эхэл\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Үндсэн хэлийг транскрипцэд үргэлж оруулдаг\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ярианы хэл нэмэх\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Хэл хайх...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Хэл ба бүс\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Ашиглалтын өгөгдлийг хуваалцах\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Өгөгдөл\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Програм\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Үйл явдалд тулгуурласан тэмдэглэл төлөвлөсөн эхлэх цагтаа хүрэх үед автоматаар сонсож эхэлнэ.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Уулзалтын апп микрофоноо гаргах үед автоматаар сонсохоо зогсоо.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Сонсож байхдаа авсаархан хөвөгч удирдлагыг харуул.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Нэмэлт ярианы хэлүүд\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Гараар эхлүүлэхгүйгээр үргэлж бэлэн байна.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Нэвтрэх үед Anarlog-г эхлүүлнэ үү\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Тойм, чат болон хиймэл оюун ухаанаар үүсгэсэн хариултуудын хэл\"],\"iDNBZe\":[\"Мэдэгдэл\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Уулзалт дуусахад зогсох\"],\"jzmguI\":[\"Уулзалт\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Тохирох хэл олдсонгүй\"],\"k_sb6z\":[\"Хэл сонгох\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Хөвөгч мөрийг харуулах\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog-г сайжруулахад туслах нэргүй хэрэглээний аналитик илгээнэ үү.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Үндсэн хэл\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Хэл нэмэх\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Уулзалт эхлэхэд эхэл\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Үндсэн хэлийг транскрипцэд үргэлж оруулдаг\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ярианы хэл нэмэх\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Хэл хайх...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Хэл ба бүс\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Ашиглалтын өгөгдлийг хуваалцах\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Өгөгдөл\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Програм\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Үйл явдалд тулгуурласан тэмдэглэл төлөвлөсөн эхлэх цагтаа хүрэх үед автоматаар сонсож эхэлнэ.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Уулзалтын апп микрофоноо гаргах үед автоматаар сонсохоо зогсоо.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Сонсож байхдаа авсаархан хөвөгч удирдлагыг харуул.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Нэмэлт ярианы хэлүүд\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Гараар эхлүүлэхгүйгээр үргэлж бэлэн байна.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Нэвтрэх үед Anarlog-г эхлүүлнэ үү\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Тойм, чат болон хиймэл оюун ухаанаар үүсгэсэн хариултуудын хэл\"],\"iDNBZe\":[\"Мэдэгдэл\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Уулзалт дуусахад зогсох\"],\"jzmguI\":[\"Уулзалт\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Тохирох хэл олдсонгүй\"],\"k_sb6z\":[\"Хэл сонгох\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog-г сайжруулахад туслах нэргүй хэрэглээний аналитик илгээнэ үү.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mr/messages.po b/apps/desktop/src/i18n/locales/mr/messages.po index c810e6f0f9..e4a384cc76 100644 --- a/apps/desktop/src/i18n/locales/mr/messages.po +++ b/apps/desktop/src/i18n/locales/mr/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "बोलीची भाषा जोडा" msgid "Additional spoken languages" msgstr "अतिरिक्त बोलल्या जाणाऱ्या भाषा" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "मीटिंग ॲप मायक्रोफोन रिलीज msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "फ्लोटिंग बार दर्शवा" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mr/messages.ts b/apps/desktop/src/i18n/locales/mr/messages.ts index d9f7563c02..1be1c21556 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोडा\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग सुरू झाल्यावर सुरू करा\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"मुख्य भाषा नेहमी लिप्यंतरणासाठी समाविष्ट केली जाते\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"बोलीची भाषा जोडा\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"भाषा शोधा...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"भाषा आणि प्रदेश\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"वापर डेटा सामायिक करा\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"डेटा\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ॲप\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"इव्हेंट-बॅक्ड टीप त्याच्या शेड्यूल केलेल्या प्रारंभ वेळेपर्यंत पोहोचल्यावर आपोआप ऐकणे सुरू करा.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"मीटिंग ॲप मायक्रोफोन रिलीज करते तेव्हा आपोआप ऐकणे थांबवा.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ऐकताना कॉम्पॅक्ट फ्लोटिंग कंट्रोल दाखवा.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलल्या जाणाऱ्या भाषा\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"मॅन्युअली लॉन्च न करता नेहमी तयार.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"लॉगिनवर Anarlog सुरू करा\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"सारांश, चॅट आणि AI-व्युत्पन्न प्रतिसादांसाठी भाषा\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"मीटिंग संपल्यावर थांबा\"],\"jzmguI\":[\"मीटिंग्ज\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"कोणत्याही जुळणारी भाषा आढळली नाही\"],\"k_sb6z\":[\"भाषा निवडा\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"फ्लोटिंग बार दर्शवा\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog सुधारण्यात मदत करण्यासाठी अनामित वापर विश्लेषण पाठवा.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा जोडा\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग सुरू झाल्यावर सुरू करा\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"मुख्य भाषा नेहमी लिप्यंतरणासाठी समाविष्ट केली जाते\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"बोलीची भाषा जोडा\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"भाषा शोधा...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"भाषा आणि प्रदेश\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"वापर डेटा सामायिक करा\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"डेटा\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ॲप\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"इव्हेंट-बॅक्ड टीप त्याच्या शेड्यूल केलेल्या प्रारंभ वेळेपर्यंत पोहोचल्यावर आपोआप ऐकणे सुरू करा.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"मीटिंग ॲप मायक्रोफोन रिलीज करते तेव्हा आपोआप ऐकणे थांबवा.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ऐकताना कॉम्पॅक्ट फ्लोटिंग कंट्रोल दाखवा.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलल्या जाणाऱ्या भाषा\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"मॅन्युअली लॉन्च न करता नेहमी तयार.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"लॉगिनवर Anarlog सुरू करा\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"सारांश, चॅट आणि AI-व्युत्पन्न प्रतिसादांसाठी भाषा\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"मीटिंग संपल्यावर थांबा\"],\"jzmguI\":[\"मीटिंग्ज\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"कोणत्याही जुळणारी भाषा आढळली नाही\"],\"k_sb6z\":[\"भाषा निवडा\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog सुधारण्यात मदत करण्यासाठी अनामित वापर विश्लेषण पाठवा.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ms/messages.po b/apps/desktop/src/i18n/locales/ms/messages.po index 89ed5b0bc2..fa3e686a9d 100644 --- a/apps/desktop/src/i18n/locales/ms/messages.po +++ b/apps/desktop/src/i18n/locales/ms/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Tambahkan bahasa pertuturan" msgid "Additional spoken languages" msgstr "Bahasa pertuturan tambahan" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Berhenti mendengar secara automatik apabila apl mesyuarat mengeluarkan m msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Tunjukkan bar terapung" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ms/messages.ts b/apps/desktop/src/i18n/locales/ms/messages.ts index 7344e6c7ed..cd380930b6 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Bahasa utama\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah bahasa\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulakan apabila mesyuarat bermula\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Bahasa utama sentiasa disertakan untuk transkripsi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tambahkan bahasa pertuturan\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Bahasa carian...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kongsi data penggunaan\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Apl\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Mula mendengar secara automatik apabila nota yang disokong acara mencapai masa mula yang dijadualkan.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Berhenti mendengar secara automatik apabila apl mesyuarat mengeluarkan mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Tunjukkan kawalan terapung padat semasa mendengar.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa pertuturan tambahan\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Sentiasa bersedia tanpa melancarkan secara manual.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Mulakan Anarlog semasa log masuk\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Bahasa untuk ringkasan, sembang dan respons yang dijana AI\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Berhenti apabila mesyuarat tamat\"],\"jzmguI\":[\"Mesyuarat\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Tiada bahasa yang sepadan ditemui\"],\"k_sb6z\":[\"Pilih bahasa\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Tunjukkan bar terapung\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Hantar analitis penggunaan tanpa nama untuk membantu memperbaik Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Bahasa utama\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambah bahasa\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mulakan apabila mesyuarat bermula\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Bahasa utama sentiasa disertakan untuk transkripsi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tambahkan bahasa pertuturan\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Bahasa carian...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Bahasa & Wilayah\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kongsi data penggunaan\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Apl\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Mula mendengar secara automatik apabila nota yang disokong acara mencapai masa mula yang dijadualkan.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Berhenti mendengar secara automatik apabila apl mesyuarat mengeluarkan mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Tunjukkan kawalan terapung padat semasa mendengar.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Bahasa pertuturan tambahan\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Sentiasa bersedia tanpa melancarkan secara manual.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Mulakan Anarlog semasa log masuk\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Bahasa untuk ringkasan, sembang dan respons yang dijana AI\"],\"iDNBZe\":[\"Pemberitahuan\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Berhenti apabila mesyuarat tamat\"],\"jzmguI\":[\"Mesyuarat\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Tiada bahasa yang sepadan ditemui\"],\"k_sb6z\":[\"Pilih bahasa\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Hantar analitis penggunaan tanpa nama untuk membantu memperbaik Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/mt/messages.po b/apps/desktop/src/i18n/locales/mt/messages.po index 351885d363..4083a3545d 100644 --- a/apps/desktop/src/i18n/locales/mt/messages.po +++ b/apps/desktop/src/i18n/locales/mt/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Żid il-lingwa mitkellma" msgid "Additional spoken languages" msgstr "Lingwi mitkellma addizzjonali" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Awtomatikament tieqaf tisma' meta l-app tal-laqgħa toħroġ il-mikrofon msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Uri bar floating" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/mt/messages.ts b/apps/desktop/src/i18n/locales/mt/messages.ts index 07ff829370..e98b57876f 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lingwa prinċipali\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Żid il-lingwa\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ibda meta tibda l-laqgħa\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Il-lingwa ewlenija hija dejjem inkluża għat-traskrizzjoni\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Żid il-lingwa mitkellma\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Fittex fil-lingwa...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lingwa u Reġjun\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Aqsam id-dejta tal-użu\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dejta\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Ibda tisma' awtomatikament meta nota sostnuta minn avveniment tilħaq il-ħin tal-bidu skedat tagħha.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Awtomatikament tieqaf tisma' meta l-app tal-laqgħa toħroġ il-mikrofonu.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Uri l-kontroll kompatt f'wiċċ l-ilma waqt li tisma'.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingwi mitkellma addizzjonali\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Dejjem lest mingħajr tnedija manwalment.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Ibda Anarlog mal-login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lingwa għal sommarji, chats, u tweġibiet iġġenerati mill-AI\"],\"iDNBZe\":[\"Notifiki\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Ieqaf meta tintemm il-laqgħa\"],\"jzmguI\":[\"Laqgħat\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"L-ebda lingwa li taqbel ma nstabet\"],\"k_sb6z\":[\"Agħżel il-lingwa\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Uri bar floating\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Ibgħat analiżi tal-użu anonima biex tgħin ittejjeb Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lingwa prinċipali\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Żid il-lingwa\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ibda meta tibda l-laqgħa\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Il-lingwa ewlenija hija dejjem inkluża għat-traskrizzjoni\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Żid il-lingwa mitkellma\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Fittex fil-lingwa...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lingwa u Reġjun\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Aqsam id-dejta tal-użu\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dejta\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Ibda tisma' awtomatikament meta nota sostnuta minn avveniment tilħaq il-ħin tal-bidu skedat tagħha.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Awtomatikament tieqaf tisma' meta l-app tal-laqgħa toħroġ il-mikrofonu.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Uri l-kontroll kompatt f'wiċċ l-ilma waqt li tisma'.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lingwi mitkellma addizzjonali\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Dejjem lest mingħajr tnedija manwalment.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Ibda Anarlog mal-login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lingwa għal sommarji, chats, u tweġibiet iġġenerati mill-AI\"],\"iDNBZe\":[\"Notifiki\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Ieqaf meta tintemm il-laqgħa\"],\"jzmguI\":[\"Laqgħat\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"L-ebda lingwa li taqbel ma nstabet\"],\"k_sb6z\":[\"Agħżel il-lingwa\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Ibgħat analiżi tal-użu anonima biex tgħin ittejjeb Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/my/messages.po b/apps/desktop/src/i18n/locales/my/messages.po index c49d9b8f9d..52d07e58e5 100644 --- a/apps/desktop/src/i18n/locales/my/messages.po +++ b/apps/desktop/src/i18n/locales/my/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "ပြောသောဘာသာစကားကို ထည့်ပ msgid "Additional spoken languages" msgstr "နောက်ထပ် ပြောဆိုသော ဘာသာစကားများ" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "အစည်းအဝေးအက်ပ်က မိုက်ခရိ msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ရေပေါ်ဘားကိုပြပါ" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/my/messages.ts b/apps/desktop/src/i18n/locales/my/messages.ts index 90d9439c8a..fb0e374ce3 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ပင်မဘာသာစကား\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ဘာသာစကားထည့်ပါ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"အစည်းအဝေးစတင်သည့်အခါ စတင်ပါ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"အဓိကဘာသာစကားကို စာသားမှတ်တမ်းအတွက် အမြဲထည့်သွင်းထားသည်\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"ပြောသောဘာသာစကားကို ထည့်ပါ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ရှာဖွေရန် ဘာသာစကား...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ဘာသာစကားနှင့် ဒေသ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"အသုံးပြုမှုဒေတာကို မျှဝေပါ\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ဒေတာ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"အက်ပ်\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"အစီအစဉ်- ကျောထောက်နောက်ခံပြုထားသော မှတ်စုသည် ၎င်း၏သတ်မှတ်ထားသော စတင်ချိန်သို့ ရောက်ရှိသည့်အခါ အလိုအလျောက် စတင်နားထောင်ပါသည်။\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"အစည်းအဝေးအက်ပ်က မိုက်ခရိုဖုန်းကို ထုတ်သည့်အခါ အလိုအလျောက် နားထောင်ခြင်းကို ရပ်လိုက်ပါ။\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"နားထောင်နေစဉ် ကျစ်လျစ်သော ရေပေါ်ထိန်းချုပ်မှုကို ပြသပါ။\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"နောက်ထပ် ပြောဆိုသော ဘာသာစကားများ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ကိုယ်တိုင်မဖွင့်ဘဲ အမြဲတမ်းအဆင်သင့်ဖြစ်နေပါပြီ။\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"အကောင့်ဝင်ချိန်တွင် Anarlog စတင်ပါ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"အနှစ်ချုပ်များ၊ ချတ်များနှင့် AI ဖန်တီးထားသော တုံ့ပြန်မှုများအတွက် ဘာသာစကား\"],\"iDNBZe\":[\"သတိပေးချက်များ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"အစည်းအဝေးပြီးဆုံးသည့်အခါ ရပ်ပါ\"],\"jzmguI\":[\"အစည်းအဝေးများ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"တူညီသောဘာသာစကားများကိုမတွေ့ပါ\"],\"k_sb6z\":[\"ဘာသာစကားကို ရွေးပါ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ရေပေါ်ဘားကိုပြပါ\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Analog ပိုမိုကောင်းမွန်လာစေရန်အတွက် အမည်မသိအသုံးပြုမှု ခွဲခြမ်းစိတ်ဖြာချက်များကို ပေးပို့ပါ။\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ပင်မဘာသာစကား\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ဘာသာစကားထည့်ပါ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"အစည်းအဝေးစတင်သည့်အခါ စတင်ပါ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"အဓိကဘာသာစကားကို စာသားမှတ်တမ်းအတွက် အမြဲထည့်သွင်းထားသည်\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"ပြောသောဘာသာစကားကို ထည့်ပါ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ရှာဖွေရန် ဘာသာစကား...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ဘာသာစကားနှင့် ဒေသ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"အသုံးပြုမှုဒေတာကို မျှဝေပါ\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ဒေတာ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"အက်ပ်\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"အစီအစဉ်- ကျောထောက်နောက်ခံပြုထားသော မှတ်စုသည် ၎င်း၏သတ်မှတ်ထားသော စတင်ချိန်သို့ ရောက်ရှိသည့်အခါ အလိုအလျောက် စတင်နားထောင်ပါသည်။\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"အစည်းအဝေးအက်ပ်က မိုက်ခရိုဖုန်းကို ထုတ်သည့်အခါ အလိုအလျောက် နားထောင်ခြင်းကို ရပ်လိုက်ပါ။\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"နားထောင်နေစဉ် ကျစ်လျစ်သော ရေပေါ်ထိန်းချုပ်မှုကို ပြသပါ။\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"နောက်ထပ် ပြောဆိုသော ဘာသာစကားများ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ကိုယ်တိုင်မဖွင့်ဘဲ အမြဲတမ်းအဆင်သင့်ဖြစ်နေပါပြီ။\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"အကောင့်ဝင်ချိန်တွင် Anarlog စတင်ပါ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"အနှစ်ချုပ်များ၊ ချတ်များနှင့် AI ဖန်တီးထားသော တုံ့ပြန်မှုများအတွက် ဘာသာစကား\"],\"iDNBZe\":[\"သတိပေးချက်များ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"အစည်းအဝေးပြီးဆုံးသည့်အခါ ရပ်ပါ\"],\"jzmguI\":[\"အစည်းအဝေးများ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"တူညီသောဘာသာစကားများကိုမတွေ့ပါ\"],\"k_sb6z\":[\"ဘာသာစကားကို ရွေးပါ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Analog ပိုမိုကောင်းမွန်လာစေရန်အတွက် အမည်မသိအသုံးပြုမှု ခွဲခြမ်းစိတ်ဖြာချက်များကို ပေးပို့ပါ။\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ne/messages.po b/apps/desktop/src/i18n/locales/ne/messages.po index f3cbf65664..17b4644a51 100644 --- a/apps/desktop/src/i18n/locales/ne/messages.po +++ b/apps/desktop/src/i18n/locales/ne/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "बोल्ने भाषा थप्नुहोस्" msgid "Additional spoken languages" msgstr "अतिरिक्त बोलिने भाषाहरू" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "मिटिङ एपले माइक्रोफोन रिलि msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "फ्लोटिंग बार देखाउनुहोस्" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ne/messages.ts b/apps/desktop/src/i18n/locales/ne/messages.ts index ae40d84e24..46152a374d 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा थप्नुहोस्\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"बैठक सुरु हुँदा सुरु गर्नुहोस्\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"मुख्य भाषा सधैँ ट्रान्सक्रिप्शनको लागि समावेश गरिन्छ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"बोल्ने भाषा थप्नुहोस्\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"भाषा खोज्नुहोस्...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"भाषा र क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"उपयोग डाटा साझेदारी गर्नुहोस्\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"डेटा\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"एप\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"इभेन्ट-ब्याक गरिएको नोट आफ्नो निर्धारित सुरु समयमा पुग्दा स्वचालित रूपमा सुन्न सुरु गर्नुहोस्।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"मिटिङ एपले माइक्रोफोन रिलिज गर्दा स्वतः सुन्न बन्द गर्नुहोस्।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"सुन्दा कम्प्याक्ट फ्लोटिंग नियन्त्रण देखाउनुहोस्।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलिने भाषाहरू\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"मैन्युअल रूपमा सुरु नगरी सधैं तयार।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"लगइनमा Anarlog सुरु गर्नुहोस्\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"सारांश, च्याट, र AI-उत्पन्न प्रतिक्रियाहरूको लागि भाषा\"],\"iDNBZe\":[\"सूचनाहरू\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"बैठक समाप्त हुँदा रोक्नुहोस्\"],\"jzmguI\":[\"बैठकहरू\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"कुनै मिल्दो भाषा भेटिएन\"],\"k_sb6z\":[\"भाषा चयन गर्नुहोस्\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"फ्लोटिंग बार देखाउनुहोस्\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog सुधार गर्न मद्दत गर्न बेनामी प्रयोग विश्लेषणहरू पठाउनुहोस्।\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा थप्नुहोस्\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"बैठक सुरु हुँदा सुरु गर्नुहोस्\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"मुख्य भाषा सधैँ ट्रान्सक्रिप्शनको लागि समावेश गरिन्छ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"बोल्ने भाषा थप्नुहोस्\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"भाषा खोज्नुहोस्...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"भाषा र क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"उपयोग डाटा साझेदारी गर्नुहोस्\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"डेटा\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"एप\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"इभेन्ट-ब्याक गरिएको नोट आफ्नो निर्धारित सुरु समयमा पुग्दा स्वचालित रूपमा सुन्न सुरु गर्नुहोस्।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"मिटिङ एपले माइक्रोफोन रिलिज गर्दा स्वतः सुन्न बन्द गर्नुहोस्।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"सुन्दा कम्प्याक्ट फ्लोटिंग नियन्त्रण देखाउनुहोस्।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्त बोलिने भाषाहरू\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"मैन्युअल रूपमा सुरु नगरी सधैं तयार।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"लगइनमा Anarlog सुरु गर्नुहोस्\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"सारांश, च्याट, र AI-उत्पन्न प्रतिक्रियाहरूको लागि भाषा\"],\"iDNBZe\":[\"सूचनाहरू\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"बैठक समाप्त हुँदा रोक्नुहोस्\"],\"jzmguI\":[\"बैठकहरू\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"कुनै मिल्दो भाषा भेटिएन\"],\"k_sb6z\":[\"भाषा चयन गर्नुहोस्\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog सुधार गर्न मद्दत गर्न बेनामी प्रयोग विश्लेषणहरू पठाउनुहोस्।\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/nl/messages.po b/apps/desktop/src/i18n/locales/nl/messages.po index 180f81cded..92352e1963 100644 --- a/apps/desktop/src/i18n/locales/nl/messages.po +++ b/apps/desktop/src/i18n/locales/nl/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Gesproken taal toevoegen" msgid "Additional spoken languages" msgstr "Extra gesproken talen" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Stop automatisch met luisteren wanneer de vergaderapp de microfoon losla msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Zwevende balk weergeven" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/nl/messages.ts b/apps/desktop/src/i18n/locales/nl/messages.ts index f8f321a599..954a6457ab 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hoofdtaal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Taal toevoegen\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wanneer de vergadering begint\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"De hoofdtaal is altijd opgenomen voor transcriptie\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Gesproken taal toevoegen\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Zoektaal...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Taal en regio\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Gebruiksgegevens delen\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Gegevens\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Begin automatisch met luisteren wanneer een door een gebeurtenis ondersteunde noot de geplande starttijd bereikt.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Stop automatisch met luisteren wanneer de vergaderapp de microfoon loslaat.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Laat de compacte zwevende bediening zien terwijl je luistert.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Extra gesproken talen\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Altijd klaar zonder handmatig te starten.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog bij inloggen\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Taal voor samenvattingen, chats en door AI gegenereerde reacties\"],\"iDNBZe\":[\"Meldingen\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stoppen wanneer de vergadering eindigt\"],\"jzmguI\":[\"Vergaderingen\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Geen overeenkomende talen gevonden\"],\"k_sb6z\":[\"Selecteer taal\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Zwevende balk weergeven\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Verzend anonieme gebruiksanalyses om Anarlog te helpen verbeteren.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hoofdtaal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Taal toevoegen\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start wanneer de vergadering begint\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"De hoofdtaal is altijd opgenomen voor transcriptie\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Gesproken taal toevoegen\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Zoektaal...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Taal en regio\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Gebruiksgegevens delen\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Gegevens\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Begin automatisch met luisteren wanneer een door een gebeurtenis ondersteunde noot de geplande starttijd bereikt.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Stop automatisch met luisteren wanneer de vergaderapp de microfoon loslaat.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Laat de compacte zwevende bediening zien terwijl je luistert.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Extra gesproken talen\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Altijd klaar zonder handmatig te starten.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog bij inloggen\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Taal voor samenvattingen, chats en door AI gegenereerde reacties\"],\"iDNBZe\":[\"Meldingen\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stoppen wanneer de vergadering eindigt\"],\"jzmguI\":[\"Vergaderingen\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Geen overeenkomende talen gevonden\"],\"k_sb6z\":[\"Selecteer taal\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Verzend anonieme gebruiksanalyses om Anarlog te helpen verbeteren.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/nn/messages.po b/apps/desktop/src/i18n/locales/nn/messages.po index 65a39228b9..66c60e46f9 100644 --- a/apps/desktop/src/i18n/locales/nn/messages.po +++ b/apps/desktop/src/i18n/locales/nn/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Legg til talespråk" msgid "Additional spoken languages" msgstr "Flere talespråk" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Slutt automatisk å lytte når møteappen slipper mikrofonen." msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Vis flytende søyle" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/nn/messages.ts b/apps/desktop/src/i18n/locales/nn/messages.ts index f5ee4b3f89..a08f4afbaa 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hovedspråk\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Hovedspråket er alltid inkludert for transkripsjon\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Søkespråk...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Del bruksdata\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Begynn automatisk å lytte når et hendelsesstøttet notat når sin planlagte starttid.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Slutt automatisk å lytte når møteappen slipper mikrofonen.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Vis den kompakte flytende kontrollen mens du lytter.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Alltid klar uten å starte manuelt.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Språk for sammendrag, chatter og AI-genererte svar\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"k_sb6z\":[\"Velg språk\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Vis flytende søyle\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send anonym bruksanalyse for å forbedre Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hovedspråk\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Hovedspråket er alltid inkludert for transkripsjon\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Søkespråk...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Del bruksdata\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Begynn automatisk å lytte når et hendelsesstøttet notat når sin planlagte starttid.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Slutt automatisk å lytte når møteappen slipper mikrofonen.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Vis den kompakte flytende kontrollen mens du lytter.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Alltid klar uten å starte manuelt.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Språk for sammendrag, chatter og AI-genererte svar\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"k_sb6z\":[\"Velg språk\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send anonym bruksanalyse for å forbedre Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/no/messages.po b/apps/desktop/src/i18n/locales/no/messages.po index 51736a0d89..6bb7e74d03 100644 --- a/apps/desktop/src/i18n/locales/no/messages.po +++ b/apps/desktop/src/i18n/locales/no/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Legg til talespråk" msgid "Additional spoken languages" msgstr "Flere talespråk" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Slutt automatisk å lytte når møteappen slipper mikrofonen." msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Vis flytende søyle" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/no/messages.ts b/apps/desktop/src/i18n/locales/no/messages.ts index f5ee4b3f89..a08f4afbaa 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hovedspråk\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Hovedspråket er alltid inkludert for transkripsjon\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Søkespråk...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Del bruksdata\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Begynn automatisk å lytte når et hendelsesstøttet notat når sin planlagte starttid.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Slutt automatisk å lytte når møteappen slipper mikrofonen.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Vis den kompakte flytende kontrollen mens du lytter.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Alltid klar uten å starte manuelt.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Språk for sammendrag, chatter og AI-genererte svar\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"k_sb6z\":[\"Velg språk\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Vis flytende søyle\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send anonym bruksanalyse for å forbedre Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hovedspråk\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Legg til språk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Start når møtet begynner\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Hovedspråket er alltid inkludert for transkripsjon\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Legg til talespråk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Søkespråk...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Språk og region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Del bruksdata\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Begynn automatisk å lytte når et hendelsesstøttet notat når sin planlagte starttid.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Slutt automatisk å lytte når møteappen slipper mikrofonen.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Vis den kompakte flytende kontrollen mens du lytter.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Flere talespråk\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Alltid klar uten å starte manuelt.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Start Anarlog ved pålogging\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Språk for sammendrag, chatter og AI-genererte svar\"],\"iDNBZe\":[\"Varsler\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stopp når møtet avsluttes\"],\"jzmguI\":[\"Møter\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Fant ingen samsvarende språk\"],\"k_sb6z\":[\"Velg språk\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Send anonym bruksanalyse for å forbedre Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ny/messages.po b/apps/desktop/src/i18n/locales/ny/messages.po index e759dc1a11..4a0c361c04 100644 --- a/apps/desktop/src/i18n/locales/ny/messages.po +++ b/apps/desktop/src/i18n/locales/ny/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Onjezani chilankhulo" msgid "Additional spoken languages" msgstr "Zilankhulo zina zoyankhulidwa" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Siyani kumvetsera basi pulogalamu yamsonkhano ikatulutsa cholankhulira." msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Onetsani mipiringidzo yoyandama" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ny/messages.ts b/apps/desktop/src/i18n/locales/ny/messages.ts index b17e3fbd80..04243173bf 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Chiyankhulo chachikulu\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Onjezani chilankhulo\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Yambani msonkhano ukayamba\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Chiyankhulo chachikulu chimaphatikizidwa nthawi zonse kuti chilembedwe\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Onjezani chilankhulo\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Sakani chilankhulo...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Chinenero & Chigawo\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Gawani zogwiritsa ntchito\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Zambiri\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Mapulogalamu\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Yambani kumvetsera mwachisawawa cholembedwa chotsatira chochitika chikafika nthawi yake yoyambira.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Siyani kumvetsera basi pulogalamu yamsonkhano ikatulutsa cholankhulira.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Onetsani chowongolera choyandama uku mukumvetsera.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zilankhulo zina zoyankhulidwa\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Zimakhala zokonzeka nthawi zonse osatsegula pamanja.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Yambitsani Anarlog polowera\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Chiyankhulo chachidule, macheza, ndi mayankho opangidwa ndi AI\"],\"iDNBZe\":[\"Zidziwitso\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Imani msonkhano ukatha\"],\"jzmguI\":[\"Misonkhano\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Palibe zilankhulo zofananira zomwe zapezeka\"],\"k_sb6z\":[\"Sankhani chinenero\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Onetsani mipiringidzo yoyandama\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Tumizani zowerengera zomwe simukuzitchula kuti zithandizire kukonza Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Chiyankhulo chachikulu\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Onjezani chilankhulo\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Yambani msonkhano ukayamba\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Chiyankhulo chachikulu chimaphatikizidwa nthawi zonse kuti chilembedwe\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Onjezani chilankhulo\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Sakani chilankhulo...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Chinenero & Chigawo\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Gawani zogwiritsa ntchito\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Zambiri\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Mapulogalamu\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Yambani kumvetsera mwachisawawa cholembedwa chotsatira chochitika chikafika nthawi yake yoyambira.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Siyani kumvetsera basi pulogalamu yamsonkhano ikatulutsa cholankhulira.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Onetsani chowongolera choyandama uku mukumvetsera.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Zilankhulo zina zoyankhulidwa\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Zimakhala zokonzeka nthawi zonse osatsegula pamanja.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Yambitsani Anarlog polowera\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Chiyankhulo chachidule, macheza, ndi mayankho opangidwa ndi AI\"],\"iDNBZe\":[\"Zidziwitso\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Imani msonkhano ukatha\"],\"jzmguI\":[\"Misonkhano\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Palibe zilankhulo zofananira zomwe zapezeka\"],\"k_sb6z\":[\"Sankhani chinenero\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Tumizani zowerengera zomwe simukuzitchula kuti zithandizire kukonza Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/oc/messages.po b/apps/desktop/src/i18n/locales/oc/messages.po index 06511b2af8..9ac65b07ae 100644 --- a/apps/desktop/src/i18n/locales/oc/messages.po +++ b/apps/desktop/src/i18n/locales/oc/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Apondètz la lenga parlada" msgid "Additional spoken languages" msgstr "Lengas parladas suplementàrias" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Arrèsta automaticament l'escota quand l'aplicacion de reünion libera l msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Afichar la barra flotanta" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/oc/messages.ts b/apps/desktop/src/i18n/locales/oc/messages.ts index 03f4144468..9ae788fcd9 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lenga principala\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Apondre la lenga\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aviar quand la reünion comença\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"La lenga principala es totjorn inclusa per la transcripcion\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Apondètz la lenga parlada\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Cercar lenga...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lenga & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Partejar las donadas d'utilizacion\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Donadas\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicacion\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Aviar l'escota automaticament quand una nòta sostenguda per un eveniment atenh son ora de començament programada.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Arrèsta automaticament l'escota quand l'aplicacion de reünion libera lo micrò.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Afichar lo contraròtle flotant compacte pendent l'escota.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lengas parladas suplementàrias\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Totjorn prèst sens lo lançament manualament.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Aviar l'Anarlog al moment de la connexion\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lenga pels resumits, las charradissas e las responsas generadas per l'IA\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"S'arrestar quand la reünion s'acaba\"],\"jzmguI\":[\"Reünions\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Cap de lenga correspondenta pas trobada\"],\"k_sb6z\":[\"Seleccionar la lenga\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Afichar la barra flotanta\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Mandar d'analisis d'utilizacion anonims per ajudar a melhorar Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lenga principala\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Apondre la lenga\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Aviar quand la reünion comença\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"La lenga principala es totjorn inclusa per la transcripcion\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Apondètz la lenga parlada\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Cercar lenga...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lenga & Region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Partejar las donadas d'utilizacion\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Donadas\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicacion\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Aviar l'escota automaticament quand una nòta sostenguda per un eveniment atenh son ora de començament programada.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Arrèsta automaticament l'escota quand l'aplicacion de reünion libera lo micrò.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Afichar lo contraròtle flotant compacte pendent l'escota.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lengas parladas suplementàrias\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Totjorn prèst sens lo lançament manualament.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Aviar l'Anarlog al moment de la connexion\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lenga pels resumits, las charradissas e las responsas generadas per l'IA\"],\"iDNBZe\":[\"Notificacions\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"S'arrestar quand la reünion s'acaba\"],\"jzmguI\":[\"Reünions\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Cap de lenga correspondenta pas trobada\"],\"k_sb6z\":[\"Seleccionar la lenga\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Mandar d'analisis d'utilizacion anonims per ajudar a melhorar Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/or/messages.po b/apps/desktop/src/i18n/locales/or/messages.po index 158afd2a4a..f134e974d5 100644 --- a/apps/desktop/src/i18n/locales/or/messages.po +++ b/apps/desktop/src/i18n/locales/or/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "କଥିତ ଭାଷା ଯୋଡନ୍ତୁ |" msgid "Additional spoken languages" msgstr "ଅତିରିକ୍ତ କଥିତ ଭାଷା |" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "ମିଟିଂ ଆପ୍ ମାଇକ୍ରୋଫୋନ୍ ରିଲି msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ଭାସମାନ ଦଣ୍ଡ ଦେଖାନ୍ତୁ |" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/or/messages.ts b/apps/desktop/src/i18n/locales/or/messages.ts index f8053dd081..6ef1e96a73 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ମୁଖ୍ୟ ଭାଷା |\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ଭାଷା ଯୋଡନ୍ତୁ |\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ସଭା ଆରମ୍ଭ ହେବା ପରେ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ମୂଖ୍ୟ ଭାଷା ସର୍ବଦା ଟ୍ରାନ୍ସକ୍ରିପସନ୍ ପାଇଁ ଅନ୍ତର୍ଭୁକ୍ତ |\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"କଥିତ ଭାଷା ଯୋଡନ୍ତୁ |\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ସନ୍ଧାନ ଭାଷା ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ଭାଷା ଏବଂ ଅଞ୍ଚଳ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ବ୍ୟବହାର ତଥ୍ୟ ଅଂଶୀଦାର କରନ୍ତୁ |\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ତଥ୍ୟ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ଆପ୍\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ଯେତେବେଳେ ଏକ ଇଭେଣ୍ଟ-ସମର୍ଥିତ ନୋଟ୍ ଏହାର ନିର୍ଦ୍ଧାରିତ ଆରମ୍ଭ ସମୟରେ ପହଞ୍ଚେ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଶୁଣିବା ଆରମ୍ଭ କରେ |\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ମିଟିଂ ଆପ୍ ମାଇକ୍ରୋଫୋନ୍ ରିଲିଜ୍ କଲାବେଳେ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଶୁଣିବା ବନ୍ଦ କର |\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ଶୁଣିବା ସମୟରେ କମ୍ପାକ୍ଟ ଫ୍ଲୋଟିଂ କଣ୍ଟ୍ରୋଲ୍ ଦେଖାନ୍ତୁ |\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ଅତିରିକ୍ତ କଥିତ ଭାଷା |\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ମାନୁଆଲ ଲଞ୍ଚ ନକରି ସର୍ବଦା ପ୍ରସ୍ତୁତ |\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ଲଗଇନ୍ ରେ ଅନାର୍ଲଗ୍ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ସାରାଂଶ, ଚାଟ୍, ଏବଂ AI- ସୃଷ୍ଟି ପ୍ରତିକ୍ରିୟା ପାଇଁ ଭାଷା |\"],\"iDNBZe\":[\"ବିଜ୍ଞପ୍ତିଗୁଡିକ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ସଭା ସମାପ୍ତ ହେବା ପରେ ବନ୍ଦ କର |\"],\"jzmguI\":[\"ମିଟିଂ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"କ No ଣସି ମେଳକ ଭାଷା ମିଳିଲା ନାହିଁ |\"],\"k_sb6z\":[\"ଭାଷା ଚୟନ କରନ୍ତୁ |\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ଭାସମାନ ଦଣ୍ଡ ଦେଖାନ୍ତୁ |\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ଅନାର୍ଲଗ୍ ଉନ୍ନତି କରିବାରେ ସାହାଯ୍ୟ କରିବାକୁ ଅଜ୍ଞାତ ବ୍ୟବହାର ଆନାଲିଟିକ୍ସ ପଠାନ୍ତୁ |\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ମୁଖ୍ୟ ଭାଷା |\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ଭାଷା ଯୋଡନ୍ତୁ |\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ସଭା ଆରମ୍ଭ ହେବା ପରେ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ମୂଖ୍ୟ ଭାଷା ସର୍ବଦା ଟ୍ରାନ୍ସକ୍ରିପସନ୍ ପାଇଁ ଅନ୍ତର୍ଭୁକ୍ତ |\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"କଥିତ ଭାଷା ଯୋଡନ୍ତୁ |\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ସନ୍ଧାନ ଭାଷା ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ଭାଷା ଏବଂ ଅଞ୍ଚଳ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ବ୍ୟବହାର ତଥ୍ୟ ଅଂଶୀଦାର କରନ୍ତୁ |\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ତଥ୍ୟ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ଆପ୍\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ଯେତେବେଳେ ଏକ ଇଭେଣ୍ଟ-ସମର୍ଥିତ ନୋଟ୍ ଏହାର ନିର୍ଦ୍ଧାରିତ ଆରମ୍ଭ ସମୟରେ ପହଞ୍ଚେ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଶୁଣିବା ଆରମ୍ଭ କରେ |\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ମିଟିଂ ଆପ୍ ମାଇକ୍ରୋଫୋନ୍ ରିଲିଜ୍ କଲାବେଳେ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଶୁଣିବା ବନ୍ଦ କର |\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ଶୁଣିବା ସମୟରେ କମ୍ପାକ୍ଟ ଫ୍ଲୋଟିଂ କଣ୍ଟ୍ରୋଲ୍ ଦେଖାନ୍ତୁ |\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ଅତିରିକ୍ତ କଥିତ ଭାଷା |\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ମାନୁଆଲ ଲଞ୍ଚ ନକରି ସର୍ବଦା ପ୍ରସ୍ତୁତ |\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ଲଗଇନ୍ ରେ ଅନାର୍ଲଗ୍ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ସାରାଂଶ, ଚାଟ୍, ଏବଂ AI- ସୃଷ୍ଟି ପ୍ରତିକ୍ରିୟା ପାଇଁ ଭାଷା |\"],\"iDNBZe\":[\"ବିଜ୍ଞପ୍ତିଗୁଡିକ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ସଭା ସମାପ୍ତ ହେବା ପରେ ବନ୍ଦ କର |\"],\"jzmguI\":[\"ମିଟିଂ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"କ No ଣସି ମେଳକ ଭାଷା ମିଳିଲା ନାହିଁ |\"],\"k_sb6z\":[\"ଭାଷା ଚୟନ କରନ୍ତୁ |\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ଅନାର୍ଲଗ୍ ଉନ୍ନତି କରିବାରେ ସାହାଯ୍ୟ କରିବାକୁ ଅଜ୍ଞାତ ବ୍ୟବହାର ଆନାଲିଟିକ୍ସ ପଠାନ୍ତୁ |\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/pa/messages.po b/apps/desktop/src/i18n/locales/pa/messages.po index ba5354d412..8bb044307d 100644 --- a/apps/desktop/src/i18n/locales/pa/messages.po +++ b/apps/desktop/src/i18n/locales/pa/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "ਬੋਲੀ ਜਾਣ ਵਾਲੀ ਭਾਸ਼ਾ ਸ਼ਾਮਲ ਕ msgid "Additional spoken languages" msgstr "ਵਧੀਕ ਬੋਲੀਆਂ ਜਾਣ ਵਾਲੀਆਂ ਭਾਸ਼ਾਵਾਂ" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "ਮੀਟਿੰਗ ਐਪ ਮਾਈਕ੍ਰੋਫ਼ੋਨ ਨੂੰ msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ਫਲੋਟਿੰਗ ਬਾਰ ਦਿਖਾਓ" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pa/messages.ts b/apps/desktop/src/i18n/locales/pa/messages.ts index 372276fe43..03c1521c9d 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ਮੁੱਖ ਭਾਸ਼ਾ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ਭਾਸ਼ਾ ਜੋੜੋ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ਮੀਟਿੰਗ ਸ਼ੁਰੂ ਹੋਣ 'ਤੇ ਸ਼ੁਰੂ ਕਰੋ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ਮੁੱਖ ਭਾਸ਼ਾ ਹਮੇਸ਼ਾ ਟ੍ਰਾਂਸਕ੍ਰਿਪਸ਼ਨ ਲਈ ਸ਼ਾਮਲ ਕੀਤੀ ਜਾਂਦੀ ਹੈ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"ਬੋਲੀ ਜਾਣ ਵਾਲੀ ਭਾਸ਼ਾ ਸ਼ਾਮਲ ਕਰੋ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ਭਾਸ਼ਾ ਖੋਜੋ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ਭਾਸ਼ਾ ਅਤੇ ਖੇਤਰ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ਵਰਤੋਂ ਡੇਟਾ ਸਾਂਝਾ ਕਰੋ\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ਡਾਟਾ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ਐਪ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ਜਦੋਂ ਕੋਈ ਇਵੈਂਟ-ਬੈਕਡ ਨੋਟ ਆਪਣੇ ਨਿਰਧਾਰਤ ਸ਼ੁਰੂਆਤੀ ਸਮੇਂ 'ਤੇ ਪਹੁੰਚਦਾ ਹੈ ਤਾਂ ਆਪਣੇ ਆਪ ਸੁਣਨਾ ਸ਼ੁਰੂ ਕਰੋ।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ਮੀਟਿੰਗ ਐਪ ਮਾਈਕ੍ਰੋਫ਼ੋਨ ਨੂੰ ਰਿਲੀਜ਼ ਕਰਨ 'ਤੇ ਸਵੈਚਲਿਤ ਤੌਰ 'ਤੇ ਸੁਣਨਾ ਬੰਦ ਕਰੋ।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ਸੁਣਦੇ ਸਮੇਂ ਸੰਖੇਪ ਫਲੋਟਿੰਗ ਕੰਟਰੋਲ ਦਿਖਾਓ।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ਵਧੀਕ ਬੋਲੀਆਂ ਜਾਣ ਵਾਲੀਆਂ ਭਾਸ਼ਾਵਾਂ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ਹੱਥੀਂ ਲਾਂਚ ਕੀਤੇ ਬਿਨਾਂ ਹਮੇਸ਼ਾ ਤਿਆਰ।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ਲੌਗਇਨ 'ਤੇ ਐਨਾਰਲੌਗ ਸ਼ੁਰੂ ਕਰੋ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ਸਾਰਾਂ, ਚੈਟਾਂ, ਅਤੇ AI ਦੁਆਰਾ ਤਿਆਰ ਕੀਤੇ ਜਵਾਬਾਂ ਲਈ ਭਾਸ਼ਾ\"],\"iDNBZe\":[\"ਸੂਚਨਾਵਾਂ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ਮੀਟਿੰਗ ਖਤਮ ਹੋਣ 'ਤੇ ਰੋਕੋ\"],\"jzmguI\":[\"ਮੀਟਿੰਗਾਂ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ਕੋਈ ਮੇਲ ਖਾਂਦੀ ਭਾਸ਼ਾ ਨਹੀਂ ਮਿਲੀ\"],\"k_sb6z\":[\"ਭਾਸ਼ਾ ਚੁਣੋ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ਫਲੋਟਿੰਗ ਬਾਰ ਦਿਖਾਓ\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ਐਨਾਰਲੌਗ ਨੂੰ ਬਿਹਤਰ ਬਣਾਉਣ ਵਿੱਚ ਮਦਦ ਲਈ ਅਗਿਆਤ ਵਰਤੋਂ ਵਿਸ਼ਲੇਸ਼ਣ ਭੇਜੋ।\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ਮੁੱਖ ਭਾਸ਼ਾ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ਭਾਸ਼ਾ ਜੋੜੋ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ਮੀਟਿੰਗ ਸ਼ੁਰੂ ਹੋਣ 'ਤੇ ਸ਼ੁਰੂ ਕਰੋ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ਮੁੱਖ ਭਾਸ਼ਾ ਹਮੇਸ਼ਾ ਟ੍ਰਾਂਸਕ੍ਰਿਪਸ਼ਨ ਲਈ ਸ਼ਾਮਲ ਕੀਤੀ ਜਾਂਦੀ ਹੈ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"ਬੋਲੀ ਜਾਣ ਵਾਲੀ ਭਾਸ਼ਾ ਸ਼ਾਮਲ ਕਰੋ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ਭਾਸ਼ਾ ਖੋਜੋ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ਭਾਸ਼ਾ ਅਤੇ ਖੇਤਰ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ਵਰਤੋਂ ਡੇਟਾ ਸਾਂਝਾ ਕਰੋ\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ਡਾਟਾ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ਐਪ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ਜਦੋਂ ਕੋਈ ਇਵੈਂਟ-ਬੈਕਡ ਨੋਟ ਆਪਣੇ ਨਿਰਧਾਰਤ ਸ਼ੁਰੂਆਤੀ ਸਮੇਂ 'ਤੇ ਪਹੁੰਚਦਾ ਹੈ ਤਾਂ ਆਪਣੇ ਆਪ ਸੁਣਨਾ ਸ਼ੁਰੂ ਕਰੋ।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"ਮੀਟਿੰਗ ਐਪ ਮਾਈਕ੍ਰੋਫ਼ੋਨ ਨੂੰ ਰਿਲੀਜ਼ ਕਰਨ 'ਤੇ ਸਵੈਚਲਿਤ ਤੌਰ 'ਤੇ ਸੁਣਨਾ ਬੰਦ ਕਰੋ।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ਸੁਣਦੇ ਸਮੇਂ ਸੰਖੇਪ ਫਲੋਟਿੰਗ ਕੰਟਰੋਲ ਦਿਖਾਓ।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ਵਧੀਕ ਬੋਲੀਆਂ ਜਾਣ ਵਾਲੀਆਂ ਭਾਸ਼ਾਵਾਂ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"ਹੱਥੀਂ ਲਾਂਚ ਕੀਤੇ ਬਿਨਾਂ ਹਮੇਸ਼ਾ ਤਿਆਰ।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"ਲੌਗਇਨ 'ਤੇ ਐਨਾਰਲੌਗ ਸ਼ੁਰੂ ਕਰੋ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ਸਾਰਾਂ, ਚੈਟਾਂ, ਅਤੇ AI ਦੁਆਰਾ ਤਿਆਰ ਕੀਤੇ ਜਵਾਬਾਂ ਲਈ ਭਾਸ਼ਾ\"],\"iDNBZe\":[\"ਸੂਚਨਾਵਾਂ\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"ਮੀਟਿੰਗ ਖਤਮ ਹੋਣ 'ਤੇ ਰੋਕੋ\"],\"jzmguI\":[\"ਮੀਟਿੰਗਾਂ\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ਕੋਈ ਮੇਲ ਖਾਂਦੀ ਭਾਸ਼ਾ ਨਹੀਂ ਮਿਲੀ\"],\"k_sb6z\":[\"ਭਾਸ਼ਾ ਚੁਣੋ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ਐਨਾਰਲੌਗ ਨੂੰ ਬਿਹਤਰ ਬਣਾਉਣ ਵਿੱਚ ਮਦਦ ਲਈ ਅਗਿਆਤ ਵਰਤੋਂ ਵਿਸ਼ਲੇਸ਼ਣ ਭੇਜੋ।\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/pl/messages.po b/apps/desktop/src/i18n/locales/pl/messages.po index c56cfee38c..34e56f6542 100644 --- a/apps/desktop/src/i18n/locales/pl/messages.po +++ b/apps/desktop/src/i18n/locales/pl/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Dodaj język mówiony" msgid "Additional spoken languages" msgstr "Dodatkowe języki mówione" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Automatycznie przestań słuchać, gdy aplikacja do spotkań zwolni mikr msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Pokaż pływający pasek" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pl/messages.ts b/apps/desktop/src/i18n/locales/pl/messages.ts index 3a9cb0b5e9..ccea4db578 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Język główny\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj język\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Rozpocznij w momencie rozpoczęcia spotkania\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Do transkrypcji zawsze uwzględniany jest język główny\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Dodaj język mówiony\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Wyszukaj język...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Język i region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Udostępnij dane o użytkowaniu\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dane\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikacja\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatycznie rozpocznij słuchanie, gdy nuta oparta na zdarzeniu osiągnie zaplanowany czas rozpoczęcia.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatycznie przestań słuchać, gdy aplikacja do spotkań zwolni mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Pokaż kompaktowy, pływający element sterujący podczas słuchania.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatkowe języki mówione\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Zawsze gotowy, bez ręcznego uruchamiania.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Uruchom Anarlog przy logowaniu\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Język podsumowań, czatów i odpowiedzi generowanych przez sztuczną inteligencję\"],\"iDNBZe\":[\"Powiadomienia\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Zatrzymaj po zakończeniu spotkania\"],\"jzmguI\":[\"Spotkania\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nie znaleziono pasujących języków\"],\"k_sb6z\":[\"Wybierz język\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Pokaż pływający pasek\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Wysyłaj anonimowe analizy użytkowania, aby pomóc ulepszyć Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Język główny\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj język\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Rozpocznij w momencie rozpoczęcia spotkania\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Do transkrypcji zawsze uwzględniany jest język główny\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Dodaj język mówiony\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Wyszukaj język...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Język i region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Udostępnij dane o użytkowaniu\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dane\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikacja\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automatycznie rozpocznij słuchanie, gdy nuta oparta na zdarzeniu osiągnie zaplanowany czas rozpoczęcia.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automatycznie przestań słuchać, gdy aplikacja do spotkań zwolni mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Pokaż kompaktowy, pływający element sterujący podczas słuchania.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatkowe języki mówione\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Zawsze gotowy, bez ręcznego uruchamiania.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Uruchom Anarlog przy logowaniu\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Język podsumowań, czatów i odpowiedzi generowanych przez sztuczną inteligencję\"],\"iDNBZe\":[\"Powiadomienia\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Zatrzymaj po zakończeniu spotkania\"],\"jzmguI\":[\"Spotkania\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nie znaleziono pasujących języków\"],\"k_sb6z\":[\"Wybierz język\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Wysyłaj anonimowe analizy użytkowania, aby pomóc ulepszyć Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ps/messages.po b/apps/desktop/src/i18n/locales/ps/messages.po index 193ad68635..82d4adf3db 100644 --- a/apps/desktop/src/i18n/locales/ps/messages.po +++ b/apps/desktop/src/i18n/locales/ps/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "د ویل شوي ژبه اضافه کړئ" msgid "Additional spoken languages" msgstr "اضافي خبرې شوي ژبې" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "کله چې د ناستې ایپ مایکروفون خوشې کوي په msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "مړونکی بار وښایاست" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ps/messages.ts b/apps/desktop/src/i18n/locales/ps/messages.ts index d5c98a9157..58caaf0258 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"اصلي ژبه\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ژبه اضافه کړئ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"کله چې ناسته پیل شي پیل کړئ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"اصلي ژبه تل د لیږد لپاره شامله ده\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"د ویل شوي ژبه اضافه کړئ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"د ژبې لټون...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ژبه او سیمه\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"د کارونې ډاټا شریک کړئ\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ډاټا\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ایپ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"په اوتومات ډول اوریدل پیل کړئ کله چې د پیښې ملاتړ شوی یادداشت خپل ټاکل شوي پیل وخت ته ورسیږي.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"کله چې د ناستې ایپ مایکروفون خوشې کوي په اوتومات ډول اوریدل بند کړئ.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"د اوریدلو پر مهال د کمپیکٹ فلوټینګ کنټرول وښایاست.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي خبرې شوي ژبې\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"د لاسي پیل کولو پرته تل چمتو وي.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"په ننوتلو کې انارلوګ پیل کړئ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"د لنډیزونو، چیټونو، او د AI لخوا تولید شوي ځوابونو لپاره ژبه\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"کله چې ناسته پای ته ورسیږي ودروئ\"],\"jzmguI\":[\"غونډې\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"هیڅ ورته ژبه ونه موندل شوه\"],\"k_sb6z\":[\"ژبه وټاکئ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"مړونکی بار وښایاست\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"د انارلوګ په ښه کولو کې د مرستې لپاره د نامعلوم کارونې تحلیلونه واستوئ.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"اصلي ژبه\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ژبه اضافه کړئ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"کله چې ناسته پیل شي پیل کړئ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"اصلي ژبه تل د لیږد لپاره شامله ده\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"د ویل شوي ژبه اضافه کړئ\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"د ژبې لټون...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ژبه او سیمه\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"د کارونې ډاټا شریک کړئ\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ډاټا\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ایپ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"په اوتومات ډول اوریدل پیل کړئ کله چې د پیښې ملاتړ شوی یادداشت خپل ټاکل شوي پیل وخت ته ورسیږي.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"کله چې د ناستې ایپ مایکروفون خوشې کوي په اوتومات ډول اوریدل بند کړئ.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"د اوریدلو پر مهال د کمپیکٹ فلوټینګ کنټرول وښایاست.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي خبرې شوي ژبې\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"د لاسي پیل کولو پرته تل چمتو وي.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"په ننوتلو کې انارلوګ پیل کړئ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"د لنډیزونو، چیټونو، او د AI لخوا تولید شوي ځوابونو لپاره ژبه\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"کله چې ناسته پای ته ورسیږي ودروئ\"],\"jzmguI\":[\"غونډې\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"هیڅ ورته ژبه ونه موندل شوه\"],\"k_sb6z\":[\"ژبه وټاکئ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"د انارلوګ په ښه کولو کې د مرستې لپاره د نامعلوم کارونې تحلیلونه واستوئ.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/pt/messages.po b/apps/desktop/src/i18n/locales/pt/messages.po index 4683f1eee9..d29e128f62 100644 --- a/apps/desktop/src/i18n/locales/pt/messages.po +++ b/apps/desktop/src/i18n/locales/pt/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Adicionar idioma falado" msgid "Additional spoken languages" msgstr "Idiomas falados adicionais" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Parar de ouvir automaticamente quando o aplicativo de reunião liberar o msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Mostrar barra flutuante" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/pt/messages.ts b/apps/desktop/src/i18n/locales/pt/messages.ts index 0eb5e7f59a..e43b9f1cc5 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Idioma principal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adicionar idioma\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar quando a reunião começar\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"O idioma principal é sempre incluído para transcrição\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Adicionar idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Pesquisar idioma...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Idioma e região\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Compartilhar dados de uso\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dados\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicativo\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Começar a ouvir automaticamente quando uma nota vinculada a um evento chegar ao horário de início agendado.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Parar de ouvir automaticamente quando o aplicativo de reunião liberar o microfone.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Mostrar o controle flutuante compacto durante a escuta.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Sempre pronto sem iniciar manualmente.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Iniciar Anarlog ao entrar\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Idioma para resumos, chats e respostas geradas por IA\"],\"iDNBZe\":[\"Notificações\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Parar quando a reunião terminar\"],\"jzmguI\":[\"Reuniões\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nenhum idioma correspondente encontrado\"],\"k_sb6z\":[\"Selecionar idioma\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Mostrar barra flutuante\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Enviar análises anônimas de uso para ajudar a melhorar o Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Idioma principal\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adicionar idioma\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Iniciar quando a reunião começar\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"O idioma principal é sempre incluído para transcrição\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Adicionar idioma falado\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Pesquisar idioma...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Idioma e região\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Compartilhar dados de uso\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dados\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicativo\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Começar a ouvir automaticamente quando uma nota vinculada a um evento chegar ao horário de início agendado.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Parar de ouvir automaticamente quando o aplicativo de reunião liberar o microfone.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Mostrar o controle flutuante compacto durante a escuta.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Idiomas falados adicionais\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Sempre pronto sem iniciar manualmente.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Iniciar Anarlog ao entrar\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Idioma para resumos, chats e respostas geradas por IA\"],\"iDNBZe\":[\"Notificações\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Parar quando a reunião terminar\"],\"jzmguI\":[\"Reuniões\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nenhum idioma correspondente encontrado\"],\"k_sb6z\":[\"Selecionar idioma\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Enviar análises anônimas de uso para ajudar a melhorar o Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ro/messages.po b/apps/desktop/src/i18n/locales/ro/messages.po index 400f2b0006..b71c6ee0a1 100644 --- a/apps/desktop/src/i18n/locales/ro/messages.po +++ b/apps/desktop/src/i18n/locales/ro/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Adăugați limba vorbită" msgid "Additional spoken languages" msgstr "Limbi vorbite suplimentare" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Opriți automat ascultarea când aplicația pentru întâlniri elibereaz msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Afișați bara plutitoare" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ro/messages.ts b/apps/desktop/src/i18n/locales/ro/messages.ts index 1fda1d45d9..609a4ac5b4 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Limba principală\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adăugați limba\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Începe când începe întâlnirea\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Limba principală este întotdeauna inclusă pentru transcriere\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Adăugați limba vorbită\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Căutați limba...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Limbă și regiune\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Partajați datele de utilizare\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Date\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicație\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Începe automat ascultarea când o notă susținută de un eveniment atinge ora de începere programată.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Opriți automat ascultarea când aplicația pentru întâlniri eliberează microfonul.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Afișați controlul flotant compact în timp ce ascultați.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Limbi vorbite suplimentare\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Întotdeauna gata fără lansare manuală.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Porniți Anarlog la conectare\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Limba pentru rezumate, chaturi și răspunsuri generate de AI\"],\"iDNBZe\":[\"Notificări\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Opriți când întâlnirea se încheie\"],\"jzmguI\":[\"Întâlniri\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nu s-au găsit limbi care se potrivesc\"],\"k_sb6z\":[\"Selectați limba\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Afișați bara plutitoare\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Trimiteți analize anonime de utilizare pentru a ajuta la îmbunătățirea Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Limba principală\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Adăugați limba\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Începe când începe întâlnirea\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Limba principală este întotdeauna inclusă pentru transcriere\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Adăugați limba vorbită\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Căutați limba...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Limbă și regiune\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Partajați datele de utilizare\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Date\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplicație\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Începe automat ascultarea când o notă susținută de un eveniment atinge ora de începere programată.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Opriți automat ascultarea când aplicația pentru întâlniri eliberează microfonul.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Afișați controlul flotant compact în timp ce ascultați.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Limbi vorbite suplimentare\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Întotdeauna gata fără lansare manuală.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Porniți Anarlog la conectare\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Limba pentru rezumate, chaturi și răspunsuri generate de AI\"],\"iDNBZe\":[\"Notificări\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Opriți când întâlnirea se încheie\"],\"jzmguI\":[\"Întâlniri\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nu s-au găsit limbi care se potrivesc\"],\"k_sb6z\":[\"Selectați limba\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Trimiteți analize anonime de utilizare pentru a ajuta la îmbunătățirea Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ru/messages.po b/apps/desktop/src/i18n/locales/ru/messages.po index 7ae05d27f3..dfe242364e 100644 --- a/apps/desktop/src/i18n/locales/ru/messages.po +++ b/apps/desktop/src/i18n/locales/ru/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Добавить разговорный язык" msgid "Additional spoken languages" msgstr "Дополнительные разговорные языки" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Автоматически прекращать прослушивани msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Показать плавающую панель" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ru/messages.ts b/apps/desktop/src/i18n/locales/ru/messages.ts index 01acf44a44..93d43bc272 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Основной язык\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавить язык\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Начать, когда начнется собрание\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Основной язык всегда включен в транскрипцию\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Добавить разговорный язык\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Язык поиска...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Язык и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Поделиться данными об использовании\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Данные\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Приложение\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Автоматически начинать прослушивание, когда заметка, основанная на событии, достигает запланированного времени начала.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Автоматически прекращать прослушивание, когда приложение для встреч отпускает микрофон.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Показывать компактный плавающий элемент управления во время прослушивания.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнительные разговорные языки\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Всегда готов без запуска вручную.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Запускать Anarlog при входе в систему\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Язык для сводок, чатов и ответов, генерируемых искусственным интеллектом\"],\"iDNBZe\":[\"Уведомления\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Остановиться, когда встреча закончится\"],\"jzmguI\":[\"Встречи\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Подходящие языки не найдены\"],\"k_sb6z\":[\"Выбрать язык\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Показать плавающую панель\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Отправлять анонимную аналитику использования, чтобы помочь улучшить Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Основной язык\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Добавить язык\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Начать, когда начнется собрание\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Основной язык всегда включен в транскрипцию\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Добавить разговорный язык\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Язык поиска...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Язык и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Поделиться данными об использовании\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Данные\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Приложение\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Автоматически начинать прослушивание, когда заметка, основанная на событии, достигает запланированного времени начала.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Автоматически прекращать прослушивание, когда приложение для встреч отпускает микрофон.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Показывать компактный плавающий элемент управления во время прослушивания.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Дополнительные разговорные языки\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Всегда готов без запуска вручную.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Запускать Anarlog при входе в систему\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Язык для сводок, чатов и ответов, генерируемых искусственным интеллектом\"],\"iDNBZe\":[\"Уведомления\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Остановиться, когда встреча закончится\"],\"jzmguI\":[\"Встречи\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Подходящие языки не найдены\"],\"k_sb6z\":[\"Выбрать язык\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Отправлять анонимную аналитику использования, чтобы помочь улучшить Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sa/messages.po b/apps/desktop/src/i18n/locales/sa/messages.po index 8c9d68f2e2..72e1ec7568 100644 --- a/apps/desktop/src/i18n/locales/sa/messages.po +++ b/apps/desktop/src/i18n/locales/sa/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "भाषितभाषा योजयतु" msgid "Additional spoken languages" msgstr "अतिरिक्तभाष्यभाषा" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "यदा सभा-अनुप्रयोगः माइक्रो msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "प्लवमानं पट्टिकां दर्शयतु" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sa/messages.ts b/apps/desktop/src/i18n/locales/sa/messages.ts index 375e8c39f1..2d8feb3084 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"मुख्यभाषा\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा योजयतु\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"समागमस्य आरम्भे आरभत\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"प्रतिलेखनार्थं मुख्यभाषा सर्वदा समाविष्टा भवति\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"भाषितभाषा योजयतु\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"भाषां अन्वेष्टुम्...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"उपयोगदत्तांशं साझां कुर्वन्तु\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"दत्तांश\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"अनुप्रयोग\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"यदा घटना-समर्थित-टिप्पणी स्वस्य निर्धारित-प्रारम्भसमयं प्राप्नोति तदा स्वयमेव श्रोतुं आरभत ।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"यदा सभा-अनुप्रयोगः माइक्रोफोनं मुक्तं करोति तदा स्वयमेव श्रवणं स्थगयति ।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"श्रवणकाले संकुचितं प्लवमानं नियन्त्रणं दर्शयतु।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्तभाष्यभाषा\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"हस्तेन प्रक्षेपणं विना सर्वदा सज्जम्।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"प्रवेशसमये Anarlog आरभत\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"सारांशानां, गपशपानां, एआइ-जनितप्रतिसादानां च भाषा\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"समागमस्य समाप्तेः समये स्थगयतु\"],\"jzmguI\":[\"समागमाः\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"न सङ्गतभाषा लभ्यते\"],\"k_sb6z\":[\"भाषां चिनोतु\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"प्लवमानं पट्टिकां दर्शयतु\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog इत्यस्य उन्नयनार्थं सहायतार्थं अनामिकं उपयोगविश्लेषणं प्रेषयन्तु ।\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"मुख्यभाषा\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"भाषा योजयतु\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"समागमस्य आरम्भे आरभत\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"प्रतिलेखनार्थं मुख्यभाषा सर्वदा समाविष्टा भवति\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"भाषितभाषा योजयतु\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"भाषां अन्वेष्टुम्...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"भाषा एवं क्षेत्र\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"उपयोगदत्तांशं साझां कुर्वन्तु\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"दत्तांश\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"अनुप्रयोग\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"यदा घटना-समर्थित-टिप्पणी स्वस्य निर्धारित-प्रारम्भसमयं प्राप्नोति तदा स्वयमेव श्रोतुं आरभत ।\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"यदा सभा-अनुप्रयोगः माइक्रोफोनं मुक्तं करोति तदा स्वयमेव श्रवणं स्थगयति ।\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"श्रवणकाले संकुचितं प्लवमानं नियन्त्रणं दर्शयतु।\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"अतिरिक्तभाष्यभाषा\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"हस्तेन प्रक्षेपणं विना सर्वदा सज्जम्।\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"प्रवेशसमये Anarlog आरभत\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"सारांशानां, गपशपानां, एआइ-जनितप्रतिसादानां च भाषा\"],\"iDNBZe\":[\"सूचना\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"समागमस्य समाप्तेः समये स्थगयतु\"],\"jzmguI\":[\"समागमाः\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"न सङ्गतभाषा लभ्यते\"],\"k_sb6z\":[\"भाषां चिनोतु\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog इत्यस्य उन्नयनार्थं सहायतार्थं अनामिकं उपयोगविश्लेषणं प्रेषयन्तु ।\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sd/messages.po b/apps/desktop/src/i18n/locales/sd/messages.po index 8e93158611..e7f4972f50 100644 --- a/apps/desktop/src/i18n/locales/sd/messages.po +++ b/apps/desktop/src/i18n/locales/sd/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "ڳالهائيندڙ ٻولي شامل ڪريو" msgid "Additional spoken languages" msgstr "اضافي ڳالهائيندڙ ٻوليون" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "خود بخود ٻڌڻ بند ڪريو جڏھن ميٽنگ ايپ مائ msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "سچل بار ڏيکاريو" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sd/messages.ts b/apps/desktop/src/i18n/locales/sd/messages.ts index 7d880ede97..d1fd6fb5bd 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"مکيه ٻولي\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ٻولي شامل ڪريو\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"شروع ڪريو جڏهن ميٽنگ شروع ٿئي\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"مکيه ٻولي هميشه ٽرانسپشن لاءِ شامل ڪئي ويندي آهي\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"ڳالهائيندڙ ٻولي شامل ڪريو\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ٻولي ڳولھيو...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ٻولي ۽ علائقو\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"استعمال ڊيٽا حصيداري ڪريو\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ڊيٽا\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ايپ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"خود بخود ٻڌڻ شروع ڪريو جڏھن ھڪڙي واقعي جي پٺڀرائي نوٽ پنھنجي مقرر ڪيل وقت تي پھچي.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"خود بخود ٻڌڻ بند ڪريو جڏھن ميٽنگ ايپ مائڪروفون جاري ڪري ٿي.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ٻڌڻ دوران ڪمپيڪٽ سچل ڪنٽرول ڏيکاريو.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي ڳالهائيندڙ ٻوليون\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"دستي طور تي لانچ ڪرڻ کان سواءِ هميشه تيار.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"لاگ ان تي Anarlog شروع ڪريو\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"خلاصو، چيٽ، ۽ AI جي ٺاهيل جوابن لاءِ ٻولي\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"جڏهن ميٽنگ ختم ٿئي ته روڪيو\"],\"jzmguI\":[\"ملاقات\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ڪابه ملندڙ ٻوليون نه مليون\"],\"k_sb6z\":[\"ٻولي چونڊيو\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"سچل بار ڏيکاريو\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"انارلاگ کي بهتر ڪرڻ ۾ مدد لاءِ گمنام استعمال جا تجزيا موڪليو.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"مکيه ٻولي\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"ٻولي شامل ڪريو\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"شروع ڪريو جڏهن ميٽنگ شروع ٿئي\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"مکيه ٻولي هميشه ٽرانسپشن لاءِ شامل ڪئي ويندي آهي\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"ڳالهائيندڙ ٻولي شامل ڪريو\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ٻولي ڳولھيو...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ٻولي ۽ علائقو\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"استعمال ڊيٽا حصيداري ڪريو\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ڊيٽا\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ايپ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"خود بخود ٻڌڻ شروع ڪريو جڏھن ھڪڙي واقعي جي پٺڀرائي نوٽ پنھنجي مقرر ڪيل وقت تي پھچي.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"خود بخود ٻڌڻ بند ڪريو جڏھن ميٽنگ ايپ مائڪروفون جاري ڪري ٿي.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ٻڌڻ دوران ڪمپيڪٽ سچل ڪنٽرول ڏيکاريو.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافي ڳالهائيندڙ ٻوليون\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"دستي طور تي لانچ ڪرڻ کان سواءِ هميشه تيار.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"لاگ ان تي Anarlog شروع ڪريو\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"خلاصو، چيٽ، ۽ AI جي ٺاهيل جوابن لاءِ ٻولي\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"جڏهن ميٽنگ ختم ٿئي ته روڪيو\"],\"jzmguI\":[\"ملاقات\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ڪابه ملندڙ ٻوليون نه مليون\"],\"k_sb6z\":[\"ٻولي چونڊيو\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"انارلاگ کي بهتر ڪرڻ ۾ مدد لاءِ گمنام استعمال جا تجزيا موڪليو.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/si/messages.po b/apps/desktop/src/i18n/locales/si/messages.po index f58ea2e62c..b16403f01d 100644 --- a/apps/desktop/src/i18n/locales/si/messages.po +++ b/apps/desktop/src/i18n/locales/si/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "කථන භාෂාව එක් කරන්න" msgid "Additional spoken languages" msgstr "අමතර කථන භාෂා" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "රැස්වීම් යෙදුම මයික්‍රෆෝන msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "පාවෙන තීරුව පෙන්වන්න" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/si/messages.ts b/apps/desktop/src/i18n/locales/si/messages.ts index f215a4e7d3..36cdc9c5e1 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ප්‍රධාන භාෂාව\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"භාෂාව එක් කරන්න\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"රැස්වීම ආරම්භ වන විට ආරම්භ කරන්න\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ප්‍රධාන භාෂාව සෑම විටම පිටපත් කිරීම සඳහා ඇතුළත් වේ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"කථන භාෂාව එක් කරන්න\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"සෙවුම් භාෂාව...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"භාෂාව සහ කලාපය\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"භාවිතා දත්ත බෙදා ගන්න\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"දත්ත\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"යෙදුම\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"සිදුවීම් පිටුබලය සහිත සටහනක් එහි නියමිත ආරම්භක වේලාවට ළඟා වූ විට ස්වයංක්‍රීයව සවන් දීම ආරම්භ කරන්න.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"රැස්වීම් යෙදුම මයික්‍රෆෝනය මුදා හරින විට ස්වයංක්‍රීයව සවන් දීම නවත්වන්න.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"සවන් දෙන අතරතුර සංයුක්ත පාවෙන පාලනය පෙන්වන්න.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"අමතර කථන භාෂා\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"අතින් දියත් නොකර සැම විටම සූදානම්.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"පිවිසීමේදී Anarlog ආරම්භ කරන්න\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"සාරාංශ, කතාබස් සහ AI-උත්පාදිත ප්‍රතිචාර සඳහා භාෂාව\"],\"iDNBZe\":[\"දැනුම්දීම්\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"රැස්වීම අවසන් වූ විට නවත්වන්න\"],\"jzmguI\":[\"රැස්වීම්\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ගැළපෙන භාෂා කිසිවක් හමු නොවීය\"],\"k_sb6z\":[\"භාෂාව තෝරන්න\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"පාවෙන තීරුව පෙන්වන්න\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog වැඩිදියුණු කිරීමට උදවු කිරීමට නිර්නාමික භාවිත විශ්ලේෂණ යවන්න.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ප්‍රධාන භාෂාව\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"භාෂාව එක් කරන්න\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"රැස්වීම ආරම්භ වන විට ආරම්භ කරන්න\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ප්‍රධාන භාෂාව සෑම විටම පිටපත් කිරීම සඳහා ඇතුළත් වේ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"කථන භාෂාව එක් කරන්න\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"සෙවුම් භාෂාව...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"භාෂාව සහ කලාපය\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"භාවිතා දත්ත බෙදා ගන්න\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"දත්ත\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"යෙදුම\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"සිදුවීම් පිටුබලය සහිත සටහනක් එහි නියමිත ආරම්භක වේලාවට ළඟා වූ විට ස්වයංක්‍රීයව සවන් දීම ආරම්භ කරන්න.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"රැස්වීම් යෙදුම මයික්‍රෆෝනය මුදා හරින විට ස්වයංක්‍රීයව සවන් දීම නවත්වන්න.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"සවන් දෙන අතරතුර සංයුක්ත පාවෙන පාලනය පෙන්වන්න.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"අමතර කථන භාෂා\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"අතින් දියත් නොකර සැම විටම සූදානම්.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"පිවිසීමේදී Anarlog ආරම්භ කරන්න\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"සාරාංශ, කතාබස් සහ AI-උත්පාදිත ප්‍රතිචාර සඳහා භාෂාව\"],\"iDNBZe\":[\"දැනුම්දීම්\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"රැස්වීම අවසන් වූ විට නවත්වන්න\"],\"jzmguI\":[\"රැස්වීම්\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ගැළපෙන භාෂා කිසිවක් හමු නොවීය\"],\"k_sb6z\":[\"භාෂාව තෝරන්න\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog වැඩිදියුණු කිරීමට උදවු කිරීමට නිර්නාමික භාවිත විශ්ලේෂණ යවන්න.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sk/messages.po b/apps/desktop/src/i18n/locales/sk/messages.po index b5064c65d9..7e6ac64ccd 100644 --- a/apps/desktop/src/i18n/locales/sk/messages.po +++ b/apps/desktop/src/i18n/locales/sk/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Pridať hovorený jazyk" msgid "Additional spoken languages" msgstr "Ďalšie hovorené jazyky" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Automaticky prestať počúvať, keď aplikácia na schôdzku uvoľní m msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Zobraziť plávajúcu lištu" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sk/messages.ts b/apps/desktop/src/i18n/locales/sk/messages.ts index 7b7cd977f6..f24f4d6c74 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hlavný jazyk\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridať jazyk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začať, keď sa schôdza začína\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Pri prepise je vždy zahrnutý hlavný jazyk\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Pridať hovorený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Jazyk vyhľadávania...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Jazyk a oblasť\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Zdieľať údaje o používaní\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Údaje\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikácia\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automaticky začať počúvať, keď poznámka podporovaná udalosťou dosiahne naplánovaný čas začiatku.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automaticky prestať počúvať, keď aplikácia na schôdzku uvoľní mikrofón.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Pri počúvaní ukážte kompaktné plávajúce ovládanie.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ďalšie hovorené jazyky\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Vždy pripravené bez manuálneho spúšťania.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Spustite Anarlog pri prihlásení\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Jazyk pre súhrny, čety a odpovede generované AI\"],\"iDNBZe\":[\"Upozornenia\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Zastavte, keď sa stretnutie skončí\"],\"jzmguI\":[\"Stretnutia\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nenašli sa žiadne zodpovedajúce jazyky\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Zobraziť plávajúcu lištu\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Odosielajte anonymné analýzy používania, aby ste pomohli zlepšiť Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Hlavný jazyk\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Pridať jazyk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začať, keď sa schôdza začína\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Pri prepise je vždy zahrnutý hlavný jazyk\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Pridať hovorený jazyk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Jazyk vyhľadávania...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Jazyk a oblasť\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Zdieľať údaje o používaní\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Údaje\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikácia\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Automaticky začať počúvať, keď poznámka podporovaná udalosťou dosiahne naplánovaný čas začiatku.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Automaticky prestať počúvať, keď aplikácia na schôdzku uvoľní mikrofón.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Pri počúvaní ukážte kompaktné plávajúce ovládanie.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ďalšie hovorené jazyky\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Vždy pripravené bez manuálneho spúšťania.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Spustite Anarlog pri prihlásení\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Jazyk pre súhrny, čety a odpovede generované AI\"],\"iDNBZe\":[\"Upozornenia\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Zastavte, keď sa stretnutie skončí\"],\"jzmguI\":[\"Stretnutia\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nenašli sa žiadne zodpovedajúce jazyky\"],\"k_sb6z\":[\"Vyberte jazyk\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Odosielajte anonymné analýzy používania, aby ste pomohli zlepšiť Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sl/messages.po b/apps/desktop/src/i18n/locales/sl/messages.po index 57346563f8..71d8a6f46c 100644 --- a/apps/desktop/src/i18n/locales/sl/messages.po +++ b/apps/desktop/src/i18n/locales/sl/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Dodaj govorjeni jezik" msgid "Additional spoken languages" msgstr "Dodatni govorjeni jeziki" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Samodejno prenehajte poslušati, ko aplikacija za srečanja sprosti mikr msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Prikaži plavajočo vrstico" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sl/messages.ts b/apps/desktop/src/i18n/locales/sl/messages.ts index 3a7d967979..40f9c2ad14 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Glavni jezik\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začni, ko se sestanek začne\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Glavni jezik je vedno vključen v prepis\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Dodaj govorjeni jezik\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Jezik iskanja ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Jezik in regija\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Skupna raba podatkov o uporabi\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Podatki\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikacija\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Samodejno začni poslušati, ko beležka, podprta z dogodkom, doseže načrtovani začetni čas.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Samodejno prenehajte poslušati, ko aplikacija za srečanja sprosti mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Prikažite kompaktni lebdeči kontrolnik med poslušanjem.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorjeni jeziki\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Vedno pripravljen brez ročnega zagona.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Zaženi Anarlog ob prijavi\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Jezik za povzetke, klepete in odgovore, ustvarjene z umetno inteligenco\"],\"iDNBZe\":[\"Obvestila\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Ustavite se, ko se sestanek konča\"],\"jzmguI\":[\"Sestanki\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ni ustreznih jezikov\"],\"k_sb6z\":[\"Izberite jezik\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Prikaži plavajočo vrstico\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Pošljite anonimno analizo uporabe za pomoč pri izboljšanju Anarloga.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Glavni jezik\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dodaj jezik\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Začni, ko se sestanek začne\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Glavni jezik je vedno vključen v prepis\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Dodaj govorjeni jezik\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Jezik iskanja ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Jezik in regija\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Skupna raba podatkov o uporabi\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Podatki\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikacija\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Samodejno začni poslušati, ko beležka, podprta z dogodkom, doseže načrtovani začetni čas.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Samodejno prenehajte poslušati, ko aplikacija za srečanja sprosti mikrofon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Prikažite kompaktni lebdeči kontrolnik med poslušanjem.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Dodatni govorjeni jeziki\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Vedno pripravljen brez ročnega zagona.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Zaženi Anarlog ob prijavi\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Jezik za povzetke, klepete in odgovore, ustvarjene z umetno inteligenco\"],\"iDNBZe\":[\"Obvestila\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Ustavite se, ko se sestanek konča\"],\"jzmguI\":[\"Sestanki\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ni ustreznih jezikov\"],\"k_sb6z\":[\"Izberite jezik\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Pošljite anonimno analizo uporabe za pomoč pri izboljšanju Anarloga.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sn/messages.po b/apps/desktop/src/i18n/locales/sn/messages.po index 43b5178cec..d0b60747ed 100644 --- a/apps/desktop/src/i18n/locales/sn/messages.po +++ b/apps/desktop/src/i18n/locales/sn/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Wedzera mutauro unotaurwa" msgid "Additional spoken languages" msgstr "Mitauro inowedzerwa" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Misa kuteerera kana purogiramu yemusangano yaburitsa maikorofoni." msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Ratidza bara rinoyangarara" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sn/messages.ts b/apps/desktop/src/i18n/locales/sn/messages.ts index 0ad80b9599..4dd112a483 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Mutauro mukuru\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Wedzera mutauro\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tanga kana musangano watanga\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Mutauro mukuru unogara uchisanganisirwa pakunyora\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Wedzera mutauro unotaurwa\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Tsvaga mutauro...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Mutauro & Nharaunda\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Goverana data rekushandisa\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Chibva watanga kuteerera kana chinyorwa chinotsigirwa nechiitiko chasvika panguva yayakarongwa kutanga.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Misa kuteerera kana purogiramu yemusangano yaburitsa maikorofoni.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Ratidza chibatiso chinoyangarara uchiteerera.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mitauro inowedzerwa\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Yagara yakagadzirira pasina kuvhura nemaoko.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Tanga Anarlog paunopinda\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Mutauro wepfupiso, chats, nemhinduro dzakagadzirwa neAI\"],\"iDNBZe\":[\"Zviziviso\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Mira kana musangano wapera\"],\"jzmguI\":[\"Misangano\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Hapana mitauro inoenderana yawanikwa\"],\"k_sb6z\":[\"Sarudza mutauro\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Ratidza bara rinoyangarara\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Tumira ma analytics asingazivikanwe kuti ubatsire kunatsiridza Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Mutauro mukuru\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Wedzera mutauro\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tanga kana musangano watanga\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Mutauro mukuru unogara uchisanganisirwa pakunyora\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Wedzera mutauro unotaurwa\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Tsvaga mutauro...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Mutauro & Nharaunda\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Goverana data rekushandisa\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Chibva watanga kuteerera kana chinyorwa chinotsigirwa nechiitiko chasvika panguva yayakarongwa kutanga.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Misa kuteerera kana purogiramu yemusangano yaburitsa maikorofoni.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Ratidza chibatiso chinoyangarara uchiteerera.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mitauro inowedzerwa\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Yagara yakagadzirira pasina kuvhura nemaoko.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Tanga Anarlog paunopinda\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Mutauro wepfupiso, chats, nemhinduro dzakagadzirwa neAI\"],\"iDNBZe\":[\"Zviziviso\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Mira kana musangano wapera\"],\"jzmguI\":[\"Misangano\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Hapana mitauro inoenderana yawanikwa\"],\"k_sb6z\":[\"Sarudza mutauro\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Tumira ma analytics asingazivikanwe kuti ubatsire kunatsiridza Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/so/messages.po b/apps/desktop/src/i18n/locales/so/messages.po index a012bcf69e..40f526fa6d 100644 --- a/apps/desktop/src/i18n/locales/so/messages.po +++ b/apps/desktop/src/i18n/locales/so/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ku dar luqadda lagu hadlo" msgid "Additional spoken languages" msgstr "Afafka lagu hadlo dheeraadka ah" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Si toos ah u jooji dhegeysiga marka abka kulanku uu sii daayo makarafoon msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "muuji bar sabaynaysa" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/so/messages.ts b/apps/desktop/src/i18n/locales/so/messages.ts index 1ca97e6633..5ff4b2fd86 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Luqadda ugu weyn\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Kudar luqadda\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bilow marka kulanku bilaabmo\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Luqadda ugu weyn ayaa had iyo jeer lagu daraa qoraalka\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ku dar luqadda lagu hadlo\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Luqadda raadi...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Luqadda & Gobolka\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"La wadaag xogta isticmaalka\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Xogta\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App-ka\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Si otomaatig ah u billow dhegeysiga marka qoraalka ay taageerto dhacdo uu gaaro wakhtiga bilowga loo qorsheeyay.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Si toos ah u jooji dhegeysiga marka abka kulanku uu sii daayo makarafoonka.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Muuji xakamaynta sabbaynaysa is haysta markaad dhegaysanayso.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Afafka lagu hadlo dheeraadka ah\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Had iyo jeer diyaar adiga oo aan gacanta ku soo daacin.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Bilow Anarlog marka la soo galo\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Luqadda soo koobidda, sheekaysiga, iyo jawaabaha AI-abuuray\"],\"iDNBZe\":[\"Ogaysiisyo\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Jooji marka kulanku dhamaado\"],\"jzmguI\":[\"Kulamada\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Lama helin luuqado u dhigma\"],\"k_sb6z\":[\"Dooro luqadda\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"muuji bar sabaynaysa\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"U dir isticmaalka falanqaynta qarsoodiga ah si ay gacan uga geysato horumarinta Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Luqadda ugu weyn\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Kudar luqadda\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bilow marka kulanku bilaabmo\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Luqadda ugu weyn ayaa had iyo jeer lagu daraa qoraalka\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ku dar luqadda lagu hadlo\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Luqadda raadi...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Luqadda & Gobolka\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"La wadaag xogta isticmaalka\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Xogta\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App-ka\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Si otomaatig ah u billow dhegeysiga marka qoraalka ay taageerto dhacdo uu gaaro wakhtiga bilowga loo qorsheeyay.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Si toos ah u jooji dhegeysiga marka abka kulanku uu sii daayo makarafoonka.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Muuji xakamaynta sabbaynaysa is haysta markaad dhegaysanayso.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Afafka lagu hadlo dheeraadka ah\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Had iyo jeer diyaar adiga oo aan gacanta ku soo daacin.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Bilow Anarlog marka la soo galo\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Luqadda soo koobidda, sheekaysiga, iyo jawaabaha AI-abuuray\"],\"iDNBZe\":[\"Ogaysiisyo\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Jooji marka kulanku dhamaado\"],\"jzmguI\":[\"Kulamada\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Lama helin luuqado u dhigma\"],\"k_sb6z\":[\"Dooro luqadda\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"U dir isticmaalka falanqaynta qarsoodiga ah si ay gacan uga geysato horumarinta Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sq/messages.po b/apps/desktop/src/i18n/locales/sq/messages.po index 2751555b21..2f5b62b9b5 100644 --- a/apps/desktop/src/i18n/locales/sq/messages.po +++ b/apps/desktop/src/i18n/locales/sq/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Shto gjuhën e folur" msgid "Additional spoken languages" msgstr "Gjuhë të tjera të folura" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Ndalo automatikisht dëgjimin kur aplikacioni i takimit lëshon mikrofon msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Shfaq shiritin lundrues" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sq/messages.ts b/apps/desktop/src/i18n/locales/sq/messages.ts index cbc0e2bbd3..a9b1165b1b 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Gjuha kryesore\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Shto gjuhën\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fillo kur të fillojë takimi\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Gjuha kryesore përfshihet gjithmonë për transkriptim\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Shto gjuhën e folur\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Kërko gjuhën...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Gjuha dhe rajoni\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Ndani të dhënat e përdorimit\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Të dhënat\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikacioni\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Filloni automatikisht dëgjimin kur një shënim i mbështetur nga ngjarje arrin kohën e planifikuar të fillimit.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Ndalo automatikisht dëgjimin kur aplikacioni i takimit lëshon mikrofonin.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Trego kontrollin kompakt lundrues gjatë dëgjimit.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Gjuhë të tjera të folura\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Gjithmonë gati pa nisur manualisht.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Filloni Anarlog në hyrje\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Gjuha për përmbledhjet, bisedat dhe përgjigjet e krijuara nga AI\"],\"iDNBZe\":[\"Njoftimet\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Ndalo kur të përfundojë takimi\"],\"jzmguI\":[\"Takime\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nuk u gjet asnjë gjuhë që përputhet\"],\"k_sb6z\":[\"Zgjidh gjuhën\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Shfaq shiritin lundrues\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Dërgo analitikë anonime përdorimi për të ndihmuar në përmirësimin e Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Gjuha kryesore\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Shto gjuhën\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Fillo kur të fillojë takimi\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Gjuha kryesore përfshihet gjithmonë për transkriptim\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Shto gjuhën e folur\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Kërko gjuhën...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Gjuha dhe rajoni\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Ndani të dhënat e përdorimit\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Të dhënat\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikacioni\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Filloni automatikisht dëgjimin kur një shënim i mbështetur nga ngjarje arrin kohën e planifikuar të fillimit.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Ndalo automatikisht dëgjimin kur aplikacioni i takimit lëshon mikrofonin.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Trego kontrollin kompakt lundrues gjatë dëgjimit.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Gjuhë të tjera të folura\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Gjithmonë gati pa nisur manualisht.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Filloni Anarlog në hyrje\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Gjuha për përmbledhjet, bisedat dhe përgjigjet e krijuara nga AI\"],\"iDNBZe\":[\"Njoftimet\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Ndalo kur të përfundojë takimi\"],\"jzmguI\":[\"Takime\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Nuk u gjet asnjë gjuhë që përputhet\"],\"k_sb6z\":[\"Zgjidh gjuhën\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Dërgo analitikë anonime përdorimi për të ndihmuar në përmirësimin e Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sr/messages.po b/apps/desktop/src/i18n/locales/sr/messages.po index 80ad0c588c..601f54ca2f 100644 --- a/apps/desktop/src/i18n/locales/sr/messages.po +++ b/apps/desktop/src/i18n/locales/sr/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Додајте говорни језик" msgid "Additional spoken languages" msgstr "Додатни говорни језици" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Аутоматски заустави слушање када аплик msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Прикажи плутајућу траку" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sr/messages.ts b/apps/desktop/src/i18n/locales/sr/messages.ts index ac1750da26..08cf5d4cd7 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Главни језик\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте језик\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почните када састанак почне\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Главни језик је увек укључен за транскрипцију\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Додајте говорни језик\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Претражи језик...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Језик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Делите податке о коришћењу\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Подаци\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Апп\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Аутоматски почните да слушате када белешка подржана догађајем достигне заказано време почетка.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Аутоматски заустави слушање када апликација за састанак пусти микрофон.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Покажите компактну плутајућу контролу док слушате.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додатни говорни језици\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Увек спреман без ручног покретања.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Покрените Анарлог приликом пријављивања\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Језик за резимее, ћаскање и одговоре генерисане вештачком интелигенцијом\"],\"iDNBZe\":[\"Обавештења\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Зауставите се када се састанак заврши\"],\"jzmguI\":[\"Састанци\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Није пронађен ниједан одговарајући језик\"],\"k_sb6z\":[\"Изаберите језик\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Прикажи плутајућу траку\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Пошаљите анонимну аналитику коришћења да бисте побољшали Анарлог.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Главни језик\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додајте језик\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почните када састанак почне\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Главни језик је увек укључен за транскрипцију\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Додајте говорни језик\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Претражи језик...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Језик и регион\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Делите податке о коришћењу\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Подаци\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Апп\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Аутоматски почните да слушате када белешка подржана догађајем достигне заказано време почетка.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Аутоматски заустави слушање када апликација за састанак пусти микрофон.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Покажите компактну плутајућу контролу док слушате.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додатни говорни језици\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Увек спреман без ручног покретања.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Покрените Анарлог приликом пријављивања\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Језик за резимее, ћаскање и одговоре генерисане вештачком интелигенцијом\"],\"iDNBZe\":[\"Обавештења\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Зауставите се када се састанак заврши\"],\"jzmguI\":[\"Састанци\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Није пронађен ниједан одговарајући језик\"],\"k_sb6z\":[\"Изаберите језик\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Пошаљите анонимну аналитику коришћења да бисте побољшали Анарлог.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/su/messages.po b/apps/desktop/src/i18n/locales/su/messages.po index 70f35b585b..a79701d401 100644 --- a/apps/desktop/src/i18n/locales/su/messages.po +++ b/apps/desktop/src/i18n/locales/su/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Tambahkeun basa lisan" msgid "Additional spoken languages" msgstr "Basa lisan tambahan" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Sacara otomatis eureun ngadangukeun nalika aplikasi rapat ngaleupaskeun msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Témbongkeun palang ngambang" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/su/messages.ts b/apps/desktop/src/i18n/locales/su/messages.ts index f693e13eaa..f3f3ad4769 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Basa utama\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkeun basa\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mimitian nalika rapat dimimitian\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Basa utama sok kaasup pikeun transkripsi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tambahkeun basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Teangan basa...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Basa & Wewengkon\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Bagikeun data pamakean\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikasi\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Sacara otomatis mimitian ngadangukeun nalika catetan anu dicadangkeun acara ngahontal waktos mimiti anu dijadwalkeun.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Sacara otomatis eureun ngadangukeun nalika aplikasi rapat ngaleupaskeun mikropon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Témbongkeun kadali ngambang kompak bari ngadangukeun.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Salawasna siap tanpa diluncurkeun sacara manual.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Mimitian Anarlog nalika asup\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Basa pikeun kasimpulan, obrolan, sareng réspon anu dihasilkeun ku AI\"],\"iDNBZe\":[\"Bewara\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Eureun nalika rapat réngsé\"],\"jzmguI\":[\"Rapat\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Teu kapanggih basa nu cocog\"],\"k_sb6z\":[\"Pilih basa\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Témbongkeun palang ngambang\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Kirim analisis pamakean anonim pikeun mantuan ningkatkeun Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Basa utama\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Tambahkeun basa\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Mimitian nalika rapat dimimitian\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Basa utama sok kaasup pikeun transkripsi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Tambahkeun basa lisan\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Teangan basa...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Basa & Wewengkon\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Bagikeun data pamakean\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Aplikasi\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Sacara otomatis mimitian ngadangukeun nalika catetan anu dicadangkeun acara ngahontal waktos mimiti anu dijadwalkeun.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Sacara otomatis eureun ngadangukeun nalika aplikasi rapat ngaleupaskeun mikropon.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Témbongkeun kadali ngambang kompak bari ngadangukeun.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Basa lisan tambahan\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Salawasna siap tanpa diluncurkeun sacara manual.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Mimitian Anarlog nalika asup\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Basa pikeun kasimpulan, obrolan, sareng réspon anu dihasilkeun ku AI\"],\"iDNBZe\":[\"Bewara\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Eureun nalika rapat réngsé\"],\"jzmguI\":[\"Rapat\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Teu kapanggih basa nu cocog\"],\"k_sb6z\":[\"Pilih basa\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Kirim analisis pamakean anonim pikeun mantuan ningkatkeun Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sv/messages.po b/apps/desktop/src/i18n/locales/sv/messages.po index 606dc81636..ef2f8df631 100644 --- a/apps/desktop/src/i18n/locales/sv/messages.po +++ b/apps/desktop/src/i18n/locales/sv/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Lägg till talat språk" msgid "Additional spoken languages" msgstr "Ytterligare talade språk" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Sluta automatiskt att lyssna när mötesappen släpper mikrofonen." msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Visa flytande stapel" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sv/messages.ts b/apps/desktop/src/i18n/locales/sv/messages.ts index f84661192b..90fec3c0e5 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Huvudspråk\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lägg till språk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Börja när mötet börjar\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Huvudspråket ingår alltid för transkription\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Lägg till talat språk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Sökspråk...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Språk och region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Dela användningsdata\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Börja automatiskt lyssna när en händelsestödd anteckning når sin schemalagda starttid.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Sluta automatiskt att lyssna när mötesappen släpper mikrofonen.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Visa den kompakta flytande kontrollen medan du lyssnar.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ytterligare talade språk\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Alltid redo utan att starta manuellt.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Starta Anarlog vid inloggning\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Språk för sammanfattningar, chattar och AI-genererade svar\"],\"iDNBZe\":[\"Aviseringar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stoppa när mötet slutar\"],\"jzmguI\":[\"Möten\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Inga matchande språk hittades\"],\"k_sb6z\":[\"Välj språk\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Visa flytande stapel\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Skicka anonym användningsanalys för att förbättra Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Huvudspråk\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Lägg till språk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Börja när mötet börjar\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Huvudspråket ingår alltid för transkription\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Lägg till talat språk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Sökspråk...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Språk och region\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Dela användningsdata\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Börja automatiskt lyssna när en händelsestödd anteckning når sin schemalagda starttid.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Sluta automatiskt att lyssna när mötesappen släpper mikrofonen.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Visa den kompakta flytande kontrollen medan du lyssnar.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ytterligare talade språk\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Alltid redo utan att starta manuellt.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Starta Anarlog vid inloggning\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Språk för sammanfattningar, chattar och AI-genererade svar\"],\"iDNBZe\":[\"Aviseringar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Stoppa när mötet slutar\"],\"jzmguI\":[\"Möten\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Inga matchande språk hittades\"],\"k_sb6z\":[\"Välj språk\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Skicka anonym användningsanalys för att förbättra Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/sw/messages.po b/apps/desktop/src/i18n/locales/sw/messages.po index 51b2efb34f..14c1508a16 100644 --- a/apps/desktop/src/i18n/locales/sw/messages.po +++ b/apps/desktop/src/i18n/locales/sw/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Ongeza lugha inayozungumzwa" msgid "Additional spoken languages" msgstr "Lugha za ziada zinazozungumzwa" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Acha kusikiliza kiotomatiki wakati programu ya mkutano ikitoa maikrofoni msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Onyesha upau unaoelea" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/sw/messages.ts b/apps/desktop/src/i18n/locales/sw/messages.ts index 4c73876fa2..a43a824a12 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lugha kuu\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongeza lugha\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Anza mkutano unapoanza\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Lugha kuu hujumuishwa kila wakati kwa unukuzi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ongeza lugha inayozungumzwa\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Tafuta lugha...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lugha na Eneo\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Shiriki data ya matumizi\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Programu\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Anza kusikiliza kiotomatiki wakati dokezo linaloungwa mkono na tukio linapofikia wakati wake wa kuanza ulioratibiwa.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Acha kusikiliza kiotomatiki wakati programu ya mkutano ikitoa maikrofoni.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Onyesha kidhibiti fumbatio cha kuelea unaposikiliza.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lugha za ziada zinazozungumzwa\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Tayari kila wakati bila kuzindua wewe mwenyewe.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Anzisha Anarlog wakati wa kuingia\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lugha ya muhtasari, gumzo, na majibu yanayotokana na AI\"],\"iDNBZe\":[\"Arifa\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Simama mkutano unapoisha\"],\"jzmguI\":[\"Mikutano\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Hakuna lugha zinazolingana zilizopatikana\"],\"k_sb6z\":[\"Chagua lugha\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Onyesha upau unaoelea\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Tuma takwimu za matumizi bila kukutambulisha ili kusaidia kuboresha Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Lugha kuu\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Ongeza lugha\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Anza mkutano unapoanza\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Lugha kuu hujumuishwa kila wakati kwa unukuzi\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Ongeza lugha inayozungumzwa\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Tafuta lugha...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Lugha na Eneo\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Shiriki data ya matumizi\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Programu\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Anza kusikiliza kiotomatiki wakati dokezo linaloungwa mkono na tukio linapofikia wakati wake wa kuanza ulioratibiwa.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Acha kusikiliza kiotomatiki wakati programu ya mkutano ikitoa maikrofoni.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Onyesha kidhibiti fumbatio cha kuelea unaposikiliza.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Lugha za ziada zinazozungumzwa\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Tayari kila wakati bila kuzindua wewe mwenyewe.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Anzisha Anarlog wakati wa kuingia\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Lugha ya muhtasari, gumzo, na majibu yanayotokana na AI\"],\"iDNBZe\":[\"Arifa\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Simama mkutano unapoisha\"],\"jzmguI\":[\"Mikutano\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Hakuna lugha zinazolingana zilizopatikana\"],\"k_sb6z\":[\"Chagua lugha\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Tuma takwimu za matumizi bila kukutambulisha ili kusaidia kuboresha Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ta/messages.po b/apps/desktop/src/i18n/locales/ta/messages.po index a512e9f42c..de4a30d900 100644 --- a/apps/desktop/src/i18n/locales/ta/messages.po +++ b/apps/desktop/src/i18n/locales/ta/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "பேசும் மொழியைச் சேர்" msgid "Additional spoken languages" msgstr "கூடுதல் பேசும் மொழிகள்" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "மீட்டிங் ஆப்ஸ் மைக்ரோஃபோன msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "மிதக்கும் பட்டியைக் காட்டு" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ta/messages.ts b/apps/desktop/src/i18n/locales/ta/messages.ts index d0a334b089..ebdba48a34 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"முக்கிய மொழி\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"மொழியைச் சேர்\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"மீட்டிங் தொடங்கும் போது தொடங்கவும்\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"பிரதான மொழி எப்போதும் டிரான்ஸ்கிரிப்ஷனுக்கு சேர்க்கப்படும்\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"பேசும் மொழியைச் சேர்\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"தேடல் மொழி...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"மொழி & பகுதி\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"பயன்பாட்டுத் தரவைப் பகிரவும்\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"தரவு\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"பயன்பாடு\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"நிகழ்வு ஆதரவுக் குறிப்பு அதன் திட்டமிடப்பட்ட தொடக்க நேரத்தை அடையும் போது தானாகவே கேட்கத் தொடங்கும்.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"மீட்டிங் ஆப்ஸ் மைக்ரோஃபோனை வெளியிடும் போது தானாகவே கேட்பதை நிறுத்துங்கள்.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"கேட்கும்போது சிறிய மிதக்கும் கட்டுப்பாட்டைக் காட்டு.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"கூடுதல் பேசும் மொழிகள்\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"கைமுறையாகத் தொடங்காமல் எப்போதும் தயார்.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"உள்நுழைவில் Anarlog ஐத் தொடங்கவும்\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"சுருக்கங்கள், அரட்டைகள் மற்றும் AI-உருவாக்கிய பதில்களுக்கான மொழி\"],\"iDNBZe\":[\"அறிவிப்புகள்\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"சந்திப்பு முடிந்ததும் நிறுத்து\"],\"jzmguI\":[\"கூட்டங்கள்\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"பொருந்தும் மொழிகள் எதுவும் இல்லை\"],\"k_sb6z\":[\"மொழியைத் தேர்ந்தெடு\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"மிதக்கும் பட்டியைக் காட்டு\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog ஐ மேம்படுத்த உதவ அநாமதேய பயன்பாட்டு பகுப்பாய்வுகளை அனுப்பவும்.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"முக்கிய மொழி\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"மொழியைச் சேர்\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"மீட்டிங் தொடங்கும் போது தொடங்கவும்\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"பிரதான மொழி எப்போதும் டிரான்ஸ்கிரிப்ஷனுக்கு சேர்க்கப்படும்\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"பேசும் மொழியைச் சேர்\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"தேடல் மொழி...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"மொழி & பகுதி\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"பயன்பாட்டுத் தரவைப் பகிரவும்\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"தரவு\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"பயன்பாடு\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"நிகழ்வு ஆதரவுக் குறிப்பு அதன் திட்டமிடப்பட்ட தொடக்க நேரத்தை அடையும் போது தானாகவே கேட்கத் தொடங்கும்.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"மீட்டிங் ஆப்ஸ் மைக்ரோஃபோனை வெளியிடும் போது தானாகவே கேட்பதை நிறுத்துங்கள்.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"கேட்கும்போது சிறிய மிதக்கும் கட்டுப்பாட்டைக் காட்டு.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"கூடுதல் பேசும் மொழிகள்\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"கைமுறையாகத் தொடங்காமல் எப்போதும் தயார்.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"உள்நுழைவில் Anarlog ஐத் தொடங்கவும்\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"சுருக்கங்கள், அரட்டைகள் மற்றும் AI-உருவாக்கிய பதில்களுக்கான மொழி\"],\"iDNBZe\":[\"அறிவிப்புகள்\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"சந்திப்பு முடிந்ததும் நிறுத்து\"],\"jzmguI\":[\"கூட்டங்கள்\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"பொருந்தும் மொழிகள் எதுவும் இல்லை\"],\"k_sb6z\":[\"மொழியைத் தேர்ந்தெடு\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog ஐ மேம்படுத்த உதவ அநாமதேய பயன்பாட்டு பகுப்பாய்வுகளை அனுப்பவும்.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/te/messages.po b/apps/desktop/src/i18n/locales/te/messages.po index 481f3e9c6a..25d433d22f 100644 --- a/apps/desktop/src/i18n/locales/te/messages.po +++ b/apps/desktop/src/i18n/locales/te/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "మాట్లాడే భాషను జోడించు" msgid "Additional spoken languages" msgstr "అదనపు మాట్లాడే భాషలు" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "మీటింగ్ యాప్ మైక్రోఫోన్‌న msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ఫ్లోటింగ్ బార్‌ను చూపు" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/te/messages.ts b/apps/desktop/src/i18n/locales/te/messages.ts index 0f98695145..c269102ea7 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ప్రధాన భాష\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"భాషను జోడించు\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"సమావేశం ప్రారంభమైనప్పుడు ప్రారంభించండి\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ప్రధాన భాష ఎల్లప్పుడూ లిప్యంతరీకరణ కోసం చేర్చబడుతుంది\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"మాట్లాడే భాషను జోడించు\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"భాషను శోధించండి...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"భాష & ప్రాంతం\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"వినియోగ డేటాను భాగస్వామ్యం చేయండి\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"డేటా\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"యాప్\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ఈవెంట్-బ్యాక్డ్ నోట్ షెడ్యూల్ చేసిన ప్రారంభ సమయానికి చేరుకున్నప్పుడు స్వయంచాలకంగా వినడం ప్రారంభించండి.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"మీటింగ్ యాప్ మైక్రోఫోన్‌ను విడుదల చేసినప్పుడు స్వయంచాలకంగా వినడం ఆపివేయండి.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"వింటున్నప్పుడు కాంపాక్ట్ ఫ్లోటింగ్ కంట్రోల్‌ని చూపండి.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"అదనపు మాట్లాడే భాషలు\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"మాన్యువల్‌గా ప్రారంభించకుండానే ఎల్లప్పుడూ సిద్ధంగా ఉంటుంది.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"లాగిన్ వద్ద Anarlogని ప్రారంభించండి\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"సారాంశాలు, చాట్‌లు మరియు AI రూపొందించిన ప్రతిస్పందనల కోసం భాష\"],\"iDNBZe\":[\"నోటిఫికేషన్‌లు\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"సమావేశం ముగిసినప్పుడు ఆపివేయండి\"],\"jzmguI\":[\"సమావేశాలు\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"సరిపోయే భాషలు ఏవీ కనుగొనబడలేదు\"],\"k_sb6z\":[\"భాషను ఎంచుకోండి\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ఫ్లోటింగ్ బార్‌ను చూపు\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlogని మెరుగుపరచడంలో సహాయపడటానికి అనామక వినియోగ విశ్లేషణలను పంపండి.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ప్రధాన భాష\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"భాషను జోడించు\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"సమావేశం ప్రారంభమైనప్పుడు ప్రారంభించండి\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ప్రధాన భాష ఎల్లప్పుడూ లిప్యంతరీకరణ కోసం చేర్చబడుతుంది\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"మాట్లాడే భాషను జోడించు\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"భాషను శోధించండి...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"భాష & ప్రాంతం\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"వినియోగ డేటాను భాగస్వామ్యం చేయండి\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"డేటా\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"యాప్\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ఈవెంట్-బ్యాక్డ్ నోట్ షెడ్యూల్ చేసిన ప్రారంభ సమయానికి చేరుకున్నప్పుడు స్వయంచాలకంగా వినడం ప్రారంభించండి.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"మీటింగ్ యాప్ మైక్రోఫోన్‌ను విడుదల చేసినప్పుడు స్వయంచాలకంగా వినడం ఆపివేయండి.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"వింటున్నప్పుడు కాంపాక్ట్ ఫ్లోటింగ్ కంట్రోల్‌ని చూపండి.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"అదనపు మాట్లాడే భాషలు\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"మాన్యువల్‌గా ప్రారంభించకుండానే ఎల్లప్పుడూ సిద్ధంగా ఉంటుంది.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"లాగిన్ వద్ద Anarlogని ప్రారంభించండి\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"సారాంశాలు, చాట్‌లు మరియు AI రూపొందించిన ప్రతిస్పందనల కోసం భాష\"],\"iDNBZe\":[\"నోటిఫికేషన్‌లు\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"సమావేశం ముగిసినప్పుడు ఆపివేయండి\"],\"jzmguI\":[\"సమావేశాలు\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"సరిపోయే భాషలు ఏవీ కనుగొనబడలేదు\"],\"k_sb6z\":[\"భాషను ఎంచుకోండి\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlogని మెరుగుపరచడంలో సహాయపడటానికి అనామక వినియోగ విశ్లేషణలను పంపండి.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tg/messages.po b/apps/desktop/src/i18n/locales/tg/messages.po index dc961d5722..cb13b8a708 100644 --- a/apps/desktop/src/i18n/locales/tg/messages.po +++ b/apps/desktop/src/i18n/locales/tg/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Забони гуфтугӯиро илова кунед" msgid "Additional spoken languages" msgstr "Забонҳои иловагии гуфтугӯӣ" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Вақте ки барномаи вохӯрӣ микрофонро оз msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Намоиш додани сатри шинокунанда" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tg/messages.ts b/apps/desktop/src/i18n/locales/tg/messages.ts index f811f7562d..17afbd26c3 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Забони асосӣ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Иловаи забон\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Вақте ки вохӯрӣ оғоз мешавад, оғоз кунед\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Забони асосӣ ҳамеша барои транскрипсия дохил карда мешавад\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Забони гуфтугӯиро илова кунед\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Забони ҷустуҷӯ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Забон ва минтақа\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Мубодилаи маълумоти истифода\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Маълумот\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Барнома\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Ҳангоме ки ёддоште, ки аз рӯйдод пуштибонӣ мешавад, ба вақти ба нақша гирифтаи оғози оғозёбӣ мерасад, ба таври худкор гӯш карданро оғоз кунед.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Вақте ки барномаи вохӯрӣ микрофонро озод мекунад, худкор гӯш карданро қатъ кунед.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Ҳангоми гӯш кардани назорати шинокунандаи паймон нишон диҳед.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Забонҳои иловагии гуфтугӯӣ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ҳамеша бидуни оғози дастӣ омода аст.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Дар ворид шудан ба Anarlog оғоз кунед\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Забон барои хулосаҳо, чатҳо ва посухҳои аз ҷониби AI тавлидшуда\"],\"iDNBZe\":[\"Огоҳиҳо\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Ҳангоми ба охир расидани вохӯрӣ қатъ кунед\"],\"jzmguI\":[\"Вохангҳо\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ягон забонҳои мувофиқ ёфт нашуд\"],\"k_sb6z\":[\"Забонро интихоб кунед\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Намоиш додани сатри шинокунанда\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Таҳлили истифодаи беном барои беҳтар кардани Anarlog фиристед.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Забони асосӣ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Иловаи забон\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Вақте ки вохӯрӣ оғоз мешавад, оғоз кунед\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Забони асосӣ ҳамеша барои транскрипсия дохил карда мешавад\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Забони гуфтугӯиро илова кунед\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Забони ҷустуҷӯ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Забон ва минтақа\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Мубодилаи маълумоти истифода\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Маълумот\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Барнома\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Ҳангоме ки ёддоште, ки аз рӯйдод пуштибонӣ мешавад, ба вақти ба нақша гирифтаи оғози оғозёбӣ мерасад, ба таври худкор гӯш карданро оғоз кунед.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Вақте ки барномаи вохӯрӣ микрофонро озод мекунад, худкор гӯш карданро қатъ кунед.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Ҳангоми гӯш кардани назорати шинокунандаи паймон нишон диҳед.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Забонҳои иловагии гуфтугӯӣ\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ҳамеша бидуни оғози дастӣ омода аст.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Дар ворид шудан ба Anarlog оғоз кунед\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Забон барои хулосаҳо, чатҳо ва посухҳои аз ҷониби AI тавлидшуда\"],\"iDNBZe\":[\"Огоҳиҳо\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Ҳангоми ба охир расидани вохӯрӣ қатъ кунед\"],\"jzmguI\":[\"Вохангҳо\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ягон забонҳои мувофиқ ёфт нашуд\"],\"k_sb6z\":[\"Забонро интихоб кунед\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Таҳлили истифодаи беном барои беҳтар кардани Anarlog фиристед.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/th/messages.po b/apps/desktop/src/i18n/locales/th/messages.po index a674168d62..8ea1914b60 100644 --- a/apps/desktop/src/i18n/locales/th/messages.po +++ b/apps/desktop/src/i18n/locales/th/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "เพิ่มภาษาพูด" msgid "Additional spoken languages" msgstr "ภาษาพูดเพิ่มเติม" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "หยุดฟังโดยอัตโนมัติเมื่อ msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "แสดงแถบลอย" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/th/messages.ts b/apps/desktop/src/i18n/locales/th/messages.ts index af67275c7d..47bf021173 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ภาษาหลัก\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"เพิ่มภาษา\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"เริ่มเมื่อการประชุมเริ่มต้นขึ้น\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ภาษาหลักจะรวมอยู่ในการถอดเสียงเสมอ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"เพิ่มภาษาพูด\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ภาษาการค้นหา...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ภาษาและภูมิภาค\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"แชร์ข้อมูลการใช้งาน\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ข้อมูล\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"แอป\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"เริ่มฟังโดยอัตโนมัติเมื่อโน้ตที่ได้รับการสนับสนุนจากกิจกรรมถึงเวลาเริ่มต้นที่กำหนดไว้\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"หยุดฟังโดยอัตโนมัติเมื่อแอปการประชุมปล่อยไมโครโฟน\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"แสดงตัวควบคุมแบบลอยขนาดกะทัดรัดขณะฟัง\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ภาษาพูดเพิ่มเติม\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"พร้อมเสมอโดยไม่ต้องเปิดด้วยตนเอง\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"เริ่ม Anarlog เมื่อเข้าสู่ระบบ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ภาษาสำหรับการสรุป แชท และการตอบกลับที่สร้างโดย AI\"],\"iDNBZe\":[\"การแจ้งเตือน\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"หยุดเมื่อการประชุมสิ้นสุดลง\"],\"jzmguI\":[\"การประชุม\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ไม่พบภาษาที่ตรงกัน\"],\"k_sb6z\":[\"เลือกภาษา\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"แสดงแถบลอย\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ส่งการวิเคราะห์การใช้งานแบบไม่เปิดเผยตัวตนเพื่อช่วยปรับปรุง Anarlog\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"ภาษาหลัก\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"เพิ่มภาษา\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"เริ่มเมื่อการประชุมเริ่มต้นขึ้น\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"ภาษาหลักจะรวมอยู่ในการถอดเสียงเสมอ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"เพิ่มภาษาพูด\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"ภาษาการค้นหา...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"ภาษาและภูมิภาค\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"แชร์ข้อมูลการใช้งาน\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ข้อมูล\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"แอป\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"เริ่มฟังโดยอัตโนมัติเมื่อโน้ตที่ได้รับการสนับสนุนจากกิจกรรมถึงเวลาเริ่มต้นที่กำหนดไว้\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"หยุดฟังโดยอัตโนมัติเมื่อแอปการประชุมปล่อยไมโครโฟน\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"แสดงตัวควบคุมแบบลอยขนาดกะทัดรัดขณะฟัง\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"ภาษาพูดเพิ่มเติม\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"พร้อมเสมอโดยไม่ต้องเปิดด้วยตนเอง\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"เริ่ม Anarlog เมื่อเข้าสู่ระบบ\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"ภาษาสำหรับการสรุป แชท และการตอบกลับที่สร้างโดย AI\"],\"iDNBZe\":[\"การแจ้งเตือน\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"หยุดเมื่อการประชุมสิ้นสุดลง\"],\"jzmguI\":[\"การประชุม\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"ไม่พบภาษาที่ตรงกัน\"],\"k_sb6z\":[\"เลือกภาษา\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"ส่งการวิเคราะห์การใช้งานแบบไม่เปิดเผยตัวตนเพื่อช่วยปรับปรุง Anarlog\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tk/messages.po b/apps/desktop/src/i18n/locales/tk/messages.po index 87c51e7dbb..ff8124362b 100644 --- a/apps/desktop/src/i18n/locales/tk/messages.po +++ b/apps/desktop/src/i18n/locales/tk/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Gepleşik dilini goşuň" msgid "Additional spoken languages" msgstr "Goşmaça gürleýän diller" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Duşuşyk programmasy mikrofony çykaranda awtomatiki diňlemegi bes edi msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "floüzýän paneli görkez" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tk/messages.ts b/apps/desktop/src/i18n/locales/tk/messages.ts index a2382e68e4..072d4b37d6 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Esasy dil\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil goşuň\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Duşuşyk başlanda başlaň\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Esasy dil elmydama transkripsiýa üçin goşulýar\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Gepleşik dilini goşuň\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Gözleg dili ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Dil we sebit\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Ulanyş maglumatlaryny paýlaşyň\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Maglumatlar\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"programma\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Wakany goldaýan bellik bellenen başlangyç wagtyna ýetende awtomatiki diňläp başlaň.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Duşuşyk programmasy mikrofony çykaranda awtomatiki diňlemegi bes ediň.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Diňlän wagtyňyz ykjam ýüzýän dolandyryşy görkeziň.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Goşmaça gürleýän diller\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"El bilen işlemezden elmydama taýýar.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Anarlogy girişden başlaň\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Gysgaça mazmunlar, söhbetdeşlikler we AI tarapyndan döredilen jogaplar üçin dil\"],\"iDNBZe\":[\"Duýduryşlar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Duşuşyk gutaranda duruň\"],\"jzmguI\":[\"Duşuşyklar\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Gabat gelýän diller tapylmady\"],\"k_sb6z\":[\"Dil saýlaň\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"floüzýän paneli görkez\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlogy gowulaşdyrmak üçin anonim ulanyş analitikasyny iberiň.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Esasy dil\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil goşuň\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Duşuşyk başlanda başlaň\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Esasy dil elmydama transkripsiýa üçin goşulýar\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Gepleşik dilini goşuň\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Gözleg dili ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Dil we sebit\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Ulanyş maglumatlaryny paýlaşyň\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Maglumatlar\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"programma\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Wakany goldaýan bellik bellenen başlangyç wagtyna ýetende awtomatiki diňläp başlaň.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Duşuşyk programmasy mikrofony çykaranda awtomatiki diňlemegi bes ediň.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Diňlän wagtyňyz ykjam ýüzýän dolandyryşy görkeziň.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Goşmaça gürleýän diller\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"El bilen işlemezden elmydama taýýar.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Anarlogy girişden başlaň\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Gysgaça mazmunlar, söhbetdeşlikler we AI tarapyndan döredilen jogaplar üçin dil\"],\"iDNBZe\":[\"Duýduryşlar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Duşuşyk gutaranda duruň\"],\"jzmguI\":[\"Duşuşyklar\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Gabat gelýän diller tapylmady\"],\"k_sb6z\":[\"Dil saýlaň\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlogy gowulaşdyrmak üçin anonim ulanyş analitikasyny iberiň.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tl/messages.po b/apps/desktop/src/i18n/locales/tl/messages.po index 0fe200d3ab..6d33d700d3 100644 --- a/apps/desktop/src/i18n/locales/tl/messages.po +++ b/apps/desktop/src/i18n/locales/tl/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Magdagdag ng sinasalitang wika" msgid "Additional spoken languages" msgstr "Mga karagdagang sinasalitang wika" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Awtomatikong huminto sa pakikinig kapag inilabas ng meeting app ang mikr msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Ipakita ang floating bar" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tl/messages.ts b/apps/desktop/src/i18n/locales/tl/messages.ts index da830095a4..d6c283dab2 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Pangunahing wika\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Magdagdag ng wika\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Magsimula kapag nagsimula ang pulong\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ang pangunahing wika ay palaging kasama para sa transkripsyon\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Magdagdag ng sinasalitang wika\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Wika sa paghahanap...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Wika at Rehiyon\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Ibahagi ang data ng paggamit\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Awtomatikong magsimulang makinig kapag naabot ng isang tala na may suporta sa kaganapan ang nakaiskedyul na oras ng pagsisimula nito.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Awtomatikong huminto sa pakikinig kapag inilabas ng meeting app ang mikropono.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Ipakita ang compact floating control habang nakikinig.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mga karagdagang sinasalitang wika\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Palaging handa nang hindi manu-manong inilulunsad.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Simulan ang Anarlog sa pag-login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Wika para sa mga buod, pakikipag-chat, at mga tugon na binuo ng AI\"],\"iDNBZe\":[\"Mga Notification\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Ihinto kapag natapos na ang pulong\"],\"jzmguI\":[\"Mga Pagpupulong\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Walang nakitang katugmang mga wika\"],\"k_sb6z\":[\"Pumili ng wika\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Ipakita ang floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Magpadala ng anonymous na analytics sa paggamit upang makatulong na mapabuti ang Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Pangunahing wika\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Magdagdag ng wika\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Magsimula kapag nagsimula ang pulong\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ang pangunahing wika ay palaging kasama para sa transkripsyon\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Magdagdag ng sinasalitang wika\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Wika sa paghahanap...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Wika at Rehiyon\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Ibahagi ang data ng paggamit\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"App\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Awtomatikong magsimulang makinig kapag naabot ng isang tala na may suporta sa kaganapan ang nakaiskedyul na oras ng pagsisimula nito.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Awtomatikong huminto sa pakikinig kapag inilabas ng meeting app ang mikropono.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Ipakita ang compact floating control habang nakikinig.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Mga karagdagang sinasalitang wika\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Palaging handa nang hindi manu-manong inilulunsad.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Simulan ang Anarlog sa pag-login\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Wika para sa mga buod, pakikipag-chat, at mga tugon na binuo ng AI\"],\"iDNBZe\":[\"Mga Notification\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Ihinto kapag natapos na ang pulong\"],\"jzmguI\":[\"Mga Pagpupulong\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Walang nakitang katugmang mga wika\"],\"k_sb6z\":[\"Pumili ng wika\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Magpadala ng anonymous na analytics sa paggamit upang makatulong na mapabuti ang Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tr/messages.po b/apps/desktop/src/i18n/locales/tr/messages.po index a328f64fd8..41dd595551 100644 --- a/apps/desktop/src/i18n/locales/tr/messages.po +++ b/apps/desktop/src/i18n/locales/tr/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Konuşulan dili ekle" msgid "Additional spoken languages" msgstr "Ek konuşulan diller" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Toplantı uygulaması mikrofonu bıraktığında dinleme otomatik olarak msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Kayan çubuğu göster" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tr/messages.ts b/apps/desktop/src/i18n/locales/tr/messages.ts index 41e2295091..6dc9f169d0 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ana dil\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil ekle\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Toplantı başladığında başla\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Çeviri yazıya her zaman ana dil dahil edilir\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Konuşulan dili ekle\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Dil ara...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Dil ve Bölge\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kullanım verilerini paylaşın\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Veriler\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Uygulama\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Etkinlik destekli not, planlanan başlangıç saatine ulaştığında otomatik olarak dinlemeye başlayın.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Toplantı uygulaması mikrofonu bıraktığında dinleme otomatik olarak durdurulur.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Dinlerken kompakt değişken kontrolü gösterin.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ek konuşulan diller\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Manuel olarak başlatmaya gerek kalmadan her zaman hazır.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Giriş sırasında Anarlog'u başlatın\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Özetler, sohbetler ve yapay zeka tarafından oluşturulan yanıtlar için dil\"],\"iDNBZe\":[\"Bildirimler\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Toplantı sona erdiğinde dur\"],\"jzmguI\":[\"Toplantılar\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Eşleşen dil bulunamadı\"],\"k_sb6z\":[\"Dil seçin\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Kayan çubuğu göster\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog'un iyileştirilmesine yardımcı olmak için anonim kullanım analizleri gönderin.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ana dil\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Dil ekle\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Toplantı başladığında başla\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Çeviri yazıya her zaman ana dil dahil edilir\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Konuşulan dili ekle\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Dil ara...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Dil ve Bölge\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Kullanım verilerini paylaşın\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Veriler\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Uygulama\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Etkinlik destekli not, planlanan başlangıç saatine ulaştığında otomatik olarak dinlemeye başlayın.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Toplantı uygulaması mikrofonu bıraktığında dinleme otomatik olarak durdurulur.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Dinlerken kompakt değişken kontrolü gösterin.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ek konuşulan diller\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Manuel olarak başlatmaya gerek kalmadan her zaman hazır.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Giriş sırasında Anarlog'u başlatın\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Özetler, sohbetler ve yapay zeka tarafından oluşturulan yanıtlar için dil\"],\"iDNBZe\":[\"Bildirimler\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Toplantı sona erdiğinde dur\"],\"jzmguI\":[\"Toplantılar\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Eşleşen dil bulunamadı\"],\"k_sb6z\":[\"Dil seçin\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlog'un iyileştirilmesine yardımcı olmak için anonim kullanım analizleri gönderin.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/tt/messages.po b/apps/desktop/src/i18n/locales/tt/messages.po index 49ecf2d204..ab8d370abf 100644 --- a/apps/desktop/src/i18n/locales/tt/messages.po +++ b/apps/desktop/src/i18n/locales/tt/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Сөйләм телен өстәү" msgid "Additional spoken languages" msgstr "Өстәмә сөйләм телләре" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Очрашу кушымтасы микрофонны чыгарганд msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Йөзүче тактаны күрсәтегез" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/tt/messages.ts b/apps/desktop/src/i18n/locales/tt/messages.ts index 4386bac9a4..5162f75cd0 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Төп тел\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өстәгез\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Очрашу башлангач башлагыз\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Төп тел һәрвакыт транскрипция өчен кертелә\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Сөйләм телен өстәү\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Эзләү теле ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Тел һәм Төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Куллану мәгълүматларын бүлешү\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Мәгълүмат\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"кушымта\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Вакыйга ярдәмендә язылган план билгеләнгән старт вакытына җиткәч, автоматик рәвештә тыңлый башлый.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Очрашу кушымтасы микрофонны чыгарганда тыңлауны автоматик рәвештә туктатыгыз.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Тыңлаганда компакт йөзү контролен күрсәтегез.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өстәмә сөйләм телләре\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Кул белән эшләтеп җибәрмичә һәрвакыт әзер.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Анарлогны логинда башлау\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Кыскача мәгълүматлар, чатлар, ЯИ ясаган җаваплар өчен тел\"],\"iDNBZe\":[\"Хәбәрләр\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Очрашу беткәч туктагыз\"],\"jzmguI\":[\"Очрашулар\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Бер-берсенә туры килгән телләр табылмады\"],\"k_sb6z\":[\"Телне сайлагыз\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Йөзүче тактаны күрсәтегез\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Анарлогны яхшырту өчен аноним куллану аналитикасын җибәрегез.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Төп тел\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Тел өстәгез\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Очрашу башлангач башлагыз\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Төп тел һәрвакыт транскрипция өчен кертелә\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Сөйләм телен өстәү\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Эзләү теле ...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Тел һәм Төбәк\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Куллану мәгълүматларын бүлешү\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Мәгълүмат\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"кушымта\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Вакыйга ярдәмендә язылган план билгеләнгән старт вакытына җиткәч, автоматик рәвештә тыңлый башлый.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Очрашу кушымтасы микрофонны чыгарганда тыңлауны автоматик рәвештә туктатыгыз.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Тыңлаганда компакт йөзү контролен күрсәтегез.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Өстәмә сөйләм телләре\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Кул белән эшләтеп җибәрмичә һәрвакыт әзер.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Анарлогны логинда башлау\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Кыскача мәгълүматлар, чатлар, ЯИ ясаган җаваплар өчен тел\"],\"iDNBZe\":[\"Хәбәрләр\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Очрашу беткәч туктагыз\"],\"jzmguI\":[\"Очрашулар\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Бер-берсенә туры килгән телләр табылмады\"],\"k_sb6z\":[\"Телне сайлагыз\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Анарлогны яхшырту өчен аноним куллану аналитикасын җибәрегез.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/uk/messages.po b/apps/desktop/src/i18n/locales/uk/messages.po index faded15f9b..76afc9587a 100644 --- a/apps/desktop/src/i18n/locales/uk/messages.po +++ b/apps/desktop/src/i18n/locales/uk/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Додати розмовну мову" msgid "Additional spoken languages" msgstr "Додаткові розмовні мови" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Автоматично припиняти прослуховування msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Показати плаваючу панель" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/uk/messages.ts b/apps/desktop/src/i18n/locales/uk/messages.ts index 837e9b3f7c..83adcb1cc4 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Основна мова\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додати мову\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почати під час зустрічі\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Основна мова завжди включається для транскрипції\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Додати розмовну мову\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Мова пошуку...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Мова та регіон\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Обмін даними про використання\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Дані\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Програма\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Автоматично починати прослуховування, коли нотатка, пов’язана з подією, досягає запланованого часу початку.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Автоматично припиняти прослуховування, коли програма для зустрічей відпускає мікрофон.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Показувати компактний плаваючий елемент керування під час прослуховування.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додаткові розмовні мови\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Завжди готовий без запуску вручну.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Запускати Anarlog під час входу\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Мова для підсумків, чатів і відповідей, створених ШІ\"],\"iDNBZe\":[\"Сповіщення\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Зупинити, коли зустріч закінчиться\"],\"jzmguI\":[\"Зустрічі\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Відповідних мов не знайдено\"],\"k_sb6z\":[\"Виберіть мову\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Показати плаваючу панель\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Надсилайте анонімну аналітику використання, щоб допомогти покращити Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Основна мова\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Додати мову\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почати під час зустрічі\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Основна мова завжди включається для транскрипції\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Додати розмовну мову\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Мова пошуку...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Мова та регіон\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Обмін даними про використання\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Дані\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Програма\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Автоматично починати прослуховування, коли нотатка, пов’язана з подією, досягає запланованого часу початку.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Автоматично припиняти прослуховування, коли програма для зустрічей відпускає мікрофон.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Показувати компактний плаваючий елемент керування під час прослуховування.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Додаткові розмовні мови\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Завжди готовий без запуску вручну.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Запускати Anarlog під час входу\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Мова для підсумків, чатів і відповідей, створених ШІ\"],\"iDNBZe\":[\"Сповіщення\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Зупинити, коли зустріч закінчиться\"],\"jzmguI\":[\"Зустрічі\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Відповідних мов не знайдено\"],\"k_sb6z\":[\"Виберіть мову\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Надсилайте анонімну аналітику використання, щоб допомогти покращити Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/ur/messages.po b/apps/desktop/src/i18n/locales/ur/messages.po index 39b03b2241..9b6ecf32cb 100644 --- a/apps/desktop/src/i18n/locales/ur/messages.po +++ b/apps/desktop/src/i18n/locales/ur/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "بولی جانے والی زبان شامل کریں" msgid "Additional spoken languages" msgstr "اضافی بولی جانے والی زبانیں" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "جب میٹنگ ایپ مائکروفون جاری کرتی ہے تو خ msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "تیرتی بار دکھائیں" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/ur/messages.ts b/apps/desktop/src/i18n/locales/ur/messages.ts index 8a2eb8d945..50e1b745f3 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"مرکزی زبان\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"زبان شامل کریں\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"میٹنگ شروع ہونے پر شروع کریں\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"نقل کے لیے مرکزی زبان ہمیشہ شامل کی جاتی ہے\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"بولی جانے والی زبان شامل کریں\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"تلاش زبان...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"زبان اور علاقہ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"استعمال کا ڈیٹا شیئر کریں\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ڈیٹا\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ایپ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ایونٹ کی حمایت یافتہ نوٹ اپنے مقررہ وقت پر پہنچنے پر خود بخود سننا شروع کر دیں۔\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"جب میٹنگ ایپ مائکروفون جاری کرتی ہے تو خود بخود سننا بند کر دیں۔\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"سنتے وقت کمپیکٹ فلوٹنگ کنٹرول دکھائیں۔\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافی بولی جانے والی زبانیں\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"دستی طور پر لانچ کیے بغیر ہمیشہ تیار۔\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"لاگ ان پر Anarlog شروع کریں\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"خلاصوں، چیٹس، اور AI سے تیار کردہ جوابات کے لیے زبان\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"میٹنگ ختم ہونے پر رکیں\"],\"jzmguI\":[\"میٹنگز\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"کوئی مماثل زبانیں نہیں ملی\"],\"k_sb6z\":[\"زبان منتخب کریں\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"تیرتی بار دکھائیں\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"انارلاگ کو بہتر بنانے میں مدد کے لیے گمنام استعمال کے تجزیات بھیجیں۔\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"مرکزی زبان\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"زبان شامل کریں\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"میٹنگ شروع ہونے پر شروع کریں\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"نقل کے لیے مرکزی زبان ہمیشہ شامل کی جاتی ہے\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"بولی جانے والی زبان شامل کریں\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"تلاش زبان...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"زبان اور علاقہ\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"استعمال کا ڈیٹا شیئر کریں\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"ڈیٹا\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"ایپ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"ایونٹ کی حمایت یافتہ نوٹ اپنے مقررہ وقت پر پہنچنے پر خود بخود سننا شروع کر دیں۔\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"جب میٹنگ ایپ مائکروفون جاری کرتی ہے تو خود بخود سننا بند کر دیں۔\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"سنتے وقت کمپیکٹ فلوٹنگ کنٹرول دکھائیں۔\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"اضافی بولی جانے والی زبانیں\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"دستی طور پر لانچ کیے بغیر ہمیشہ تیار۔\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"لاگ ان پر Anarlog شروع کریں\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"خلاصوں، چیٹس، اور AI سے تیار کردہ جوابات کے لیے زبان\"],\"iDNBZe\":[\"اطلاعات\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"میٹنگ ختم ہونے پر رکیں\"],\"jzmguI\":[\"میٹنگز\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"کوئی مماثل زبانیں نہیں ملی\"],\"k_sb6z\":[\"زبان منتخب کریں\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"انارلاگ کو بہتر بنانے میں مدد کے لیے گمنام استعمال کے تجزیات بھیجیں۔\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/uz/messages.po b/apps/desktop/src/i18n/locales/uz/messages.po index 88cb8d007c..5fe62a3460 100644 --- a/apps/desktop/src/i18n/locales/uz/messages.po +++ b/apps/desktop/src/i18n/locales/uz/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Og'zaki til qo'shing" msgid "Additional spoken languages" msgstr "Qo'shimcha og'zaki tillar" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Uchrashuv ilovasi mikrofonni qoʻyib yuborganida tinglashni avtomatik ra msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Suzuvchi satrni ko'rsatish" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/uz/messages.ts b/apps/desktop/src/i18n/locales/uz/messages.ts index d827e57af0..e86fc76bc3 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Asosiy til\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Til qo'shish\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Uchrashuv boshlanganda boshlang\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Asosiy til har doim transkripsiya uchun kiritilgan\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Og'zaki til qo'shing\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Tilni qidirish...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Til va mintaqa\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Foydalanish ma'lumotlarini baham ko'rish\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Ma'lumotlar\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ilova\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Tadbirga asoslangan eslatma belgilangan boshlanish vaqtiga yetganda, avtomatik ravishda tinglashni boshlang.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Uchrashuv ilovasi mikrofonni qoʻyib yuborganida tinglashni avtomatik ravishda toʻxtating.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Tinglash paytida ixcham suzuvchi boshqaruvni ko'rsating.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Qo'shimcha og'zaki tillar\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Qo'lda ishga tushirmasdan ham doim tayyor.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Kirish vaqtida Anarlogni ishga tushiring\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Xulosalar, chatlar va AI tomonidan yaratilgan javoblar uchun til\"],\"iDNBZe\":[\"Bildirishnomalar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Uchrashuv tugashi bilan toʻxtating\"],\"jzmguI\":[\"Uchrashuvlar\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Mos tillar topilmadi\"],\"k_sb6z\":[\"Tilni tanlang\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Suzuvchi satrni ko'rsatish\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlogni yaxshilashga yordam berish uchun anonim foydalanish tahlilini yuboring.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Asosiy til\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Til qo'shish\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Uchrashuv boshlanganda boshlang\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Asosiy til har doim transkripsiya uchun kiritilgan\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Og'zaki til qo'shing\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Tilni qidirish...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Til va mintaqa\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Foydalanish ma'lumotlarini baham ko'rish\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Ma'lumotlar\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ilova\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Tadbirga asoslangan eslatma belgilangan boshlanish vaqtiga yetganda, avtomatik ravishda tinglashni boshlang.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Uchrashuv ilovasi mikrofonni qoʻyib yuborganida tinglashni avtomatik ravishda toʻxtating.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Tinglash paytida ixcham suzuvchi boshqaruvni ko'rsating.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Qo'shimcha og'zaki tillar\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Qo'lda ishga tushirmasdan ham doim tayyor.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Kirish vaqtida Anarlogni ishga tushiring\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Xulosalar, chatlar va AI tomonidan yaratilgan javoblar uchun til\"],\"iDNBZe\":[\"Bildirishnomalar\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Uchrashuv tugashi bilan toʻxtating\"],\"jzmguI\":[\"Uchrashuvlar\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Mos tillar topilmadi\"],\"k_sb6z\":[\"Tilni tanlang\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Anarlogni yaxshilashga yordam berish uchun anonim foydalanish tahlilini yuboring.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/vi/messages.po b/apps/desktop/src/i18n/locales/vi/messages.po index fd7d4830ea..e329e3d9f1 100644 --- a/apps/desktop/src/i18n/locales/vi/messages.po +++ b/apps/desktop/src/i18n/locales/vi/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Thêm ngôn ngữ nói" msgid "Additional spoken languages" msgstr "Ngôn ngữ nói bổ sung" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Tự động ngừng nghe khi ứng dụng cuộc họp nhả micrô." msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Hiển thị thanh nổi" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/vi/messages.ts b/apps/desktop/src/i18n/locales/vi/messages.ts index 7d3187633d..f5057e10ca 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ngôn ngữ chính\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Thêm ngôn ngữ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bắt đầu khi cuộc họp bắt đầu\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ngôn ngữ chính luôn được đưa vào để phiên âm\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Thêm ngôn ngữ nói\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Ngôn ngữ tìm kiếm...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ngôn ngữ & Khu vực\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Chia sẻ dữ liệu sử dụng\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dữ liệu\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ứng dụng\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Tự động bắt đầu nghe khi ghi chú dựa trên sự kiện đạt đến thời gian bắt đầu đã lên lịch.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Tự động ngừng nghe khi ứng dụng cuộc họp nhả micrô.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Hiển thị điều khiển nổi nhỏ gọn trong khi nghe.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ngôn ngữ nói bổ sung\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Luôn sẵn sàng mà không cần khởi chạy thủ công.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Bắt đầu Anarlog khi đăng nhập\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ngôn ngữ tóm tắt, trò chuyện và phản hồi do AI tạo\"],\"iDNBZe\":[\"Thông báo\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Dừng khi cuộc họp kết thúc\"],\"jzmguI\":[\"Cuộc họp\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Không tìm thấy ngôn ngữ phù hợp\"],\"k_sb6z\":[\"Chọn ngôn ngữ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Hiển thị thanh nổi\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Gửi phân tích sử dụng ẩn danh để giúp cải thiện Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ngôn ngữ chính\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Thêm ngôn ngữ\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bắt đầu khi cuộc họp bắt đầu\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ngôn ngữ chính luôn được đưa vào để phiên âm\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Thêm ngôn ngữ nói\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Ngôn ngữ tìm kiếm...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ngôn ngữ & Khu vực\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Chia sẻ dữ liệu sử dụng\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Dữ liệu\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ứng dụng\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Tự động bắt đầu nghe khi ghi chú dựa trên sự kiện đạt đến thời gian bắt đầu đã lên lịch.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Tự động ngừng nghe khi ứng dụng cuộc họp nhả micrô.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Hiển thị điều khiển nổi nhỏ gọn trong khi nghe.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Ngôn ngữ nói bổ sung\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Luôn sẵn sàng mà không cần khởi chạy thủ công.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Bắt đầu Anarlog khi đăng nhập\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ngôn ngữ tóm tắt, trò chuyện và phản hồi do AI tạo\"],\"iDNBZe\":[\"Thông báo\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Dừng khi cuộc họp kết thúc\"],\"jzmguI\":[\"Cuộc họp\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Không tìm thấy ngôn ngữ phù hợp\"],\"k_sb6z\":[\"Chọn ngôn ngữ\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Gửi phân tích sử dụng ẩn danh để giúp cải thiện Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/wo/messages.po b/apps/desktop/src/i18n/locales/wo/messages.po index 8b09d4e9fc..db70c2a7ce 100644 --- a/apps/desktop/src/i18n/locales/wo/messages.po +++ b/apps/desktop/src/i18n/locales/wo/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Yokk làkk wiñ làkk" msgid "Additional spoken languages" msgstr "Yeneen làkk yi ñuy làkk" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Dafay bàyyi déglu ci saasi su aplikaasioŋu ndaje bi bàyyee mikro bi. msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Wone barab buy féey" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/wo/messages.ts b/apps/desktop/src/i18n/locales/wo/messages.ts index 0cc97121fa..32db7258ae 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Làkk wi gëna am solo\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yokk làkk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tàmbali su ndaje bi tàmbalee\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Làkk wiñ gëna jëfandikoo dañu koy boole saa yu nekk ngir bind\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Yokk làkk wiñ làkk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Làkku seetlu...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Làkk wi ak Réew mi\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Séddoo done jëfandikoo\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Done\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Jëfekaay\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Tàmbali déglu ci saasi su ab nota buñu jàppale ci xew-xew yeggee ci waxtu tàmbali biñu ko jàppale.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Dafay bàyyi déglu ci saasi su aplikaasioŋu ndaje bi bàyyee mikro bi.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Waneel seytukat biy féey bi ngay déglu.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yeneen làkk yi ñuy làkk\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Dafay waajal saa yu nekk te doo tàmbali ko ak loxo.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Tàmbali Anarlog ci dugg bi\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Làkk ngir tënk, waxtaan, ak tontu yu IA defar\"],\"iDNBZe\":[\"Yégle yi\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Taxawal su ndaje bi jeexee\"],\"jzmguI\":[\"Ndaje yi\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Gisu ñu làkk wu méngoo\"],\"k_sb6z\":[\"Tannal làkk wi\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Wone barab buy féey\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Yonnee jàngat jëfandikoo bu nëbbu ngir jàppale ci gëna suqali Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Làkk wi gëna am solo\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yokk làkk\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Tàmbali su ndaje bi tàmbalee\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Làkk wiñ gëna jëfandikoo dañu koy boole saa yu nekk ngir bind\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Yokk làkk wiñ làkk\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Làkku seetlu...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Làkk wi ak Réew mi\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Séddoo done jëfandikoo\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Done\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Jëfekaay\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Tàmbali déglu ci saasi su ab nota buñu jàppale ci xew-xew yeggee ci waxtu tàmbali biñu ko jàppale.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Dafay bàyyi déglu ci saasi su aplikaasioŋu ndaje bi bàyyee mikro bi.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Waneel seytukat biy féey bi ngay déglu.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Yeneen làkk yi ñuy làkk\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Dafay waajal saa yu nekk te doo tàmbali ko ak loxo.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Tàmbali Anarlog ci dugg bi\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Làkk ngir tënk, waxtaan, ak tontu yu IA defar\"],\"iDNBZe\":[\"Yégle yi\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Taxawal su ndaje bi jeexee\"],\"jzmguI\":[\"Ndaje yi\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Gisu ñu làkk wu méngoo\"],\"k_sb6z\":[\"Tannal làkk wi\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Yonnee jàngat jëfandikoo bu nëbbu ngir jàppale ci gëna suqali Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/xh/messages.po b/apps/desktop/src/i18n/locales/xh/messages.po index 490bbf9973..dd566ceaa9 100644 --- a/apps/desktop/src/i18n/locales/xh/messages.po +++ b/apps/desktop/src/i18n/locales/xh/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Yongeza ulwimi oluthethwayo" msgid "Additional spoken languages" msgstr "Iilwimi ezongezelelweyo ezithethwayo" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Yeka ukumamela ngokuzenzekelayo xa usetyenziso lwentlanganiso lukhupha i msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Bonisa ibha edadayo" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/xh/messages.ts b/apps/desktop/src/i18n/locales/xh/messages.ts index eba1a705f8..ce940f23c6 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ulwimi oluphambili\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yongeza ulwimi\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala xa intlanganiso iqala\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Olona lwimi lusoloko lubandakanyiwe kushicilelo\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Yongeza ulwimi oluthethwayo\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Khangela ulwimi...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ulwimi & neNgingqi\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Yabelana ngedatha yosetyenziso\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Idatha\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Usetyenziso\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Qalisa ngokuzenzekelayo xa inqaku elixhasa isiganeko lifikelela kwixesha elicwangcisiweyo lokuqala.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Yeka ukumamela ngokuzenzekelayo xa usetyenziso lwentlanganiso lukhupha imayikrofoni.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Bonisa ulawulo olubambekayo xa umamele.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Iilwimi ezongezelelweyo ezithethwayo\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ihlala ilungile ngaphandle kokuyizisa ngesandla.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Qalisa i-Anarlog ekungeneni\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ulwimi lwesishwankathelo, iincoko, kunye neempendulo ezenziwe nge-AI\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Yima xa kuphela intlanganiso\"],\"jzmguI\":[\"Iintlanganiso\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Akukho lwimi ludibanayo lufunyenweyo\"],\"k_sb6z\":[\"Khetha ulwimi\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Bonisa ibha edadayo\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Thumela uhlalutyo losetyenziso olungachazwanga ukuze uncede uphucule i-Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ulwimi oluphambili\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Yongeza ulwimi\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala xa intlanganiso iqala\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Olona lwimi lusoloko lubandakanyiwe kushicilelo\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Yongeza ulwimi oluthethwayo\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Khangela ulwimi...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ulwimi & neNgingqi\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Yabelana ngedatha yosetyenziso\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Idatha\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Usetyenziso\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Qalisa ngokuzenzekelayo xa inqaku elixhasa isiganeko lifikelela kwixesha elicwangcisiweyo lokuqala.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Yeka ukumamela ngokuzenzekelayo xa usetyenziso lwentlanganiso lukhupha imayikrofoni.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Bonisa ulawulo olubambekayo xa umamele.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Iilwimi ezongezelelweyo ezithethwayo\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ihlala ilungile ngaphandle kokuyizisa ngesandla.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Qalisa i-Anarlog ekungeneni\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ulwimi lwesishwankathelo, iincoko, kunye neempendulo ezenziwe nge-AI\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Yima xa kuphela intlanganiso\"],\"jzmguI\":[\"Iintlanganiso\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Akukho lwimi ludibanayo lufunyenweyo\"],\"k_sb6z\":[\"Khetha ulwimi\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Thumela uhlalutyo losetyenziso olungachazwanga ukuze uncede uphucule i-Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/yi/messages.po b/apps/desktop/src/i18n/locales/yi/messages.po index 27595955b4..b39ec6bbef 100644 --- a/apps/desktop/src/i18n/locales/yi/messages.po +++ b/apps/desktop/src/i18n/locales/yi/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "צוגעבן גערעדט שפּראַך" msgid "Additional spoken languages" msgstr "נאך גערעדטע שפראכן" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "אָטאַמאַטיק האַלטן צוגעהערט ווען די בא msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "ווייַז פלאָוטינג באַר" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/yi/messages.ts b/apps/desktop/src/i18n/locales/yi/messages.ts index 5636cccd4c..bb87eb1c21 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"הויפּט שפּראַך\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"צוגעבן שפּראַך\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"אָנהייב ווען באַגעגעניש הייבט זיך אָן\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"די הויפּט שפּראַך איז שטענדיק אַרייַנגערעכנט פֿאַר טראַנסקריפּציע\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"צוגעבן גערעדט שפּראַך\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"זוכן שפּראַך...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"שפּראַך און געגנט\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ייַנטיילן באַניץ דאַטן\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"דאַטאַ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"אַפּ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"אָטאַמאַטיק אָנהייב צוגעהערט ווען אַ געשעעניש-באַקט טאָן ריטשאַז זיין סקעדזשולד אָנהייב צייט.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"אָטאַמאַטיק האַלטן צוגעהערט ווען די באַגעגעניש אַפּ ריליסיז די מיקראָפאָן.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ווייַזן די סאָליד פלאָוטינג קאָנטראָל בשעת צוגעהערט.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"נאך גערעדטע שפראכן\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"שטענדיק גרייט אָן מאַניואַלי קאַטער.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"אָנהייב אַנאַלאָג ביי לאָגין\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"שפּראַך פֿאַר סאַמעריז, טשאַץ און אַי-דזשענערייטאַד רעספּאָנסעס\"],\"iDNBZe\":[\"נאָטיפיקאַטיאָנס\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"האַלטן ווען באַגעגעניש ענדס\"],\"jzmguI\":[\"מיטינגז\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"קיין שטיפעריש שפראכן געפונען\"],\"k_sb6z\":[\"סעלעקט שפּראַך\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"ווייַז פלאָוטינג באַר\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"שיקן אַנאָנימע באַנוצערס אַנאַליטיקס צו העלפֿן פֿאַרבעסערן אַנאַלאָג.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"הויפּט שפּראַך\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"צוגעבן שפּראַך\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"אָנהייב ווען באַגעגעניש הייבט זיך אָן\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"די הויפּט שפּראַך איז שטענדיק אַרייַנגערעכנט פֿאַר טראַנסקריפּציע\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"צוגעבן גערעדט שפּראַך\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"זוכן שפּראַך...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"שפּראַך און געגנט\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"ייַנטיילן באַניץ דאַטן\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"דאַטאַ\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"אַפּ\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"אָטאַמאַטיק אָנהייב צוגעהערט ווען אַ געשעעניש-באַקט טאָן ריטשאַז זיין סקעדזשולד אָנהייב צייט.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"אָטאַמאַטיק האַלטן צוגעהערט ווען די באַגעגעניש אַפּ ריליסיז די מיקראָפאָן.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"ווייַזן די סאָליד פלאָוטינג קאָנטראָל בשעת צוגעהערט.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"נאך גערעדטע שפראכן\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"שטענדיק גרייט אָן מאַניואַלי קאַטער.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"אָנהייב אַנאַלאָג ביי לאָגין\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"שפּראַך פֿאַר סאַמעריז, טשאַץ און אַי-דזשענערייטאַד רעספּאָנסעס\"],\"iDNBZe\":[\"נאָטיפיקאַטיאָנס\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"האַלטן ווען באַגעגעניש ענדס\"],\"jzmguI\":[\"מיטינגז\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"קיין שטיפעריש שפראכן געפונען\"],\"k_sb6z\":[\"סעלעקט שפּראַך\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"שיקן אַנאָנימע באַנוצערס אַנאַליטיקס צו העלפֿן פֿאַרבעסערן אַנאַלאָג.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/yo/messages.po b/apps/desktop/src/i18n/locales/yo/messages.po index afaa9162f4..865df53dbc 100644 --- a/apps/desktop/src/i18n/locales/yo/messages.po +++ b/apps/desktop/src/i18n/locales/yo/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Fi ede sisọ kun" msgid "Additional spoken languages" msgstr "Awọn ede ti a sọ ni afikun" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Da gbigbọran duro ni aladaaṣe nigbati app ipade ba tu gbohungbohun s msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Fi ọpa lilefoofo han" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/yo/messages.ts b/apps/desktop/src/i18n/locales/yo/messages.ts index 8c5870153a..db950b8c0f 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ede akọkọ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Fi ede kun\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bẹrẹ nigbati ipade ba bẹrẹ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ede akọkọ wa nigbagbogbo fun kikọ silẹ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Fi ede sisọ kun\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Ede wa...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ede & Ekun\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Pin data lilo\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ohun elo\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Bẹrẹ gbigbọ ni aladaaṣe nigbati akọsilẹ ti o ṣe atilẹyin iṣẹlẹ ba de akoko ibẹrẹ ti a ṣeto.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Da gbigbọran duro ni aladaaṣe nigbati app ipade ba tu gbohungbohun silẹ.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Ṣafihan iṣakoso lilefoofo iwapọ lakoko gbigbọ.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Awọn ede ti a sọ ni afikun\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ṣetan nigbagbogbo lai ṣe ifilọlẹ pẹlu ọwọ.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Bẹrẹ Anarlog ni wiwọle\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ede fun awọn akojọpọ, awọn ibaraẹnisọrọ, ati awọn idahun ti ipilẹṣẹ AI\"],\"iDNBZe\":[\"Awọn iwifunni\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Duro nigbati ipade ba pari\"],\"jzmguI\":[\"Awọn ipade\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ko si awọn ede ti o baamu ti a rii\"],\"k_sb6z\":[\"Yan ede\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Fi ọpa lilefoofo han\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Firanṣẹ atupale lilo ailorukọ lati ṣe iranlọwọ ilọsiwaju Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ede akọkọ\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Fi ede kun\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Bẹrẹ nigbati ipade ba bẹrẹ\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ede akọkọ wa nigbagbogbo fun kikọ silẹ\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Fi ede sisọ kun\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Ede wa...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ede & Ekun\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Pin data lilo\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Data\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Ohun elo\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Bẹrẹ gbigbọ ni aladaaṣe nigbati akọsilẹ ti o ṣe atilẹyin iṣẹlẹ ba de akoko ibẹrẹ ti a ṣeto.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Da gbigbọran duro ni aladaaṣe nigbati app ipade ba tu gbohungbohun silẹ.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Ṣafihan iṣakoso lilefoofo iwapọ lakoko gbigbọ.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Awọn ede ti a sọ ni afikun\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ṣetan nigbagbogbo lai ṣe ifilọlẹ pẹlu ọwọ.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Bẹrẹ Anarlog ni wiwọle\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ede fun awọn akojọpọ, awọn ibaraẹnisọrọ, ati awọn idahun ti ipilẹṣẹ AI\"],\"iDNBZe\":[\"Awọn iwifunni\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Duro nigbati ipade ba pari\"],\"jzmguI\":[\"Awọn ipade\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Ko si awọn ede ti o baamu ti a rii\"],\"k_sb6z\":[\"Yan ede\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Firanṣẹ atupale lilo ailorukọ lati ṣe iranlọwọ ilọsiwaju Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/zh/messages.po b/apps/desktop/src/i18n/locales/zh/messages.po index 4c98a7b7d2..23a72ae4f6 100644 --- a/apps/desktop/src/i18n/locales/zh/messages.po +++ b/apps/desktop/src/i18n/locales/zh/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "添加口语语言" msgid "Additional spoken languages" msgstr "其他口语语言" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "当会议应用释放麦克风时,自动停止聆听。" msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "显示浮动栏" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/zh/messages.ts b/apps/desktop/src/i18n/locales/zh/messages.ts index 4697d83609..102d33c2ea 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"主要语言\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"添加语言\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会议开始时启动\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"主要语言始终包含在转录中\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"添加口语语言\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"搜索语言...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"语言和地区\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"分享使用数据\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"数据\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"应用\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"当关联日程的笔记到达预定开始时间时,自动开始聆听。\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"当会议应用释放麦克风时,自动停止聆听。\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"聆听时显示紧凑的浮动控件。\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"其他口语语言\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"无需手动启动,随时就绪。\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"登录时启动 Anarlog\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"摘要、聊天和 AI 生成回复使用的语言\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"会议结束时停止\"],\"jzmguI\":[\"会议\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"未找到匹配的语言\"],\"k_sb6z\":[\"选择语言\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"显示浮动栏\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"发送匿名使用分析,帮助改进 Anarlog。\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"主要语言\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"添加语言\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会议开始时启动\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"主要语言始终包含在转录中\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"添加口语语言\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"搜索语言...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"语言和地区\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"分享使用数据\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"数据\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"应用\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"当关联日程的笔记到达预定开始时间时,自动开始聆听。\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"当会议应用释放麦克风时,自动停止聆听。\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"聆听时显示紧凑的浮动控件。\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"其他口语语言\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"无需手动启动,随时就绪。\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"登录时启动 Anarlog\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"摘要、聊天和 AI 生成回复使用的语言\"],\"iDNBZe\":[\"通知\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"会议结束时停止\"],\"jzmguI\":[\"会议\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"未找到匹配的语言\"],\"k_sb6z\":[\"选择语言\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"发送匿名使用分析,帮助改进 Anarlog。\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/i18n/locales/zu/messages.po b/apps/desktop/src/i18n/locales/zu/messages.po index 2480e6be4f..b6f4a43a29 100644 --- a/apps/desktop/src/i18n/locales/zu/messages.po +++ b/apps/desktop/src/i18n/locales/zu/messages.po @@ -34,7 +34,7 @@ msgstr "" msgid "<0>Language model is needed to make Anarlog summarize and chat about your conversations." msgstr "" -#: src/settings/ai/stt/select.tsx:148 +#: src/settings/ai/stt/select.tsx:154 msgid "<0>Transcription model is needed to make Anarlog listen to your conversations." msgstr "" @@ -115,10 +115,14 @@ msgstr "Engeza ulimi olukhulunywayo" msgid "Additional spoken languages" msgstr "Izilimi ezengeziwe ezikhulunywayo" -#: src/settings/ai/shared/index.tsx:295 +#: src/settings/ai/shared/index.tsx:296 msgid "Advanced" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "After recording" +msgstr "" + #: src/contacts/details.tsx:322 msgid "AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes." msgstr "" @@ -163,8 +167,8 @@ msgstr "" msgid "Anarlog will sync your calendar to get meeting reminders" msgstr "" -#: src/settings/ai/shared/index.tsx:248 -#: src/settings/ai/shared/index.tsx:308 +#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:309 msgid "API Key" msgstr "" @@ -233,15 +237,11 @@ msgstr "Yeka ukulalela ngokuzenzakalela uma uhlelo lokusebenza lomhlangano lukhu msgid "Back" msgstr "" -#: src/settings/ai/shared/index.tsx:240 -#: src/settings/ai/shared/index.tsx:300 +#: src/settings/ai/shared/index.tsx:241 +#: src/settings/ai/shared/index.tsx:301 msgid "Base URL" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Batch" -msgstr "" - #: src/settings/general/storage/index.tsx:341 msgid "Browse" msgstr "" @@ -261,6 +261,10 @@ msgstr "" msgid "Calendar connected" msgstr "" +#: src/settings/ai/stt/select.tsx:695 +msgid "Can transcribe while the meeting is happening." +msgstr "" + #: src/settings/general/account.tsx:266 #: src/settings/general/account.tsx:293 #: src/settings/todo/github.tsx:217 @@ -484,7 +488,7 @@ msgstr "" msgid "Delete Event" msgstr "" -#: src/settings/ai/stt/select.tsx:743 +#: src/settings/ai/stt/select.tsx:767 msgid "Delete model" msgstr "" @@ -541,7 +545,7 @@ msgstr "" msgid "Don't show notifications when Do-Not-Disturb is enabled on your system" msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Download" msgstr "" @@ -583,7 +587,7 @@ msgstr "" msgid "Enhance contact {label}" msgstr "" -#: src/settings/ai/stt/select.tsx:221 +#: src/settings/ai/stt/select.tsx:227 msgid "Enter a model identifier" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "Enter template title" msgstr "" -#: src/settings/ai/shared/index.tsx:249 +#: src/settings/ai/shared/index.tsx:250 msgid "Enter your API key" msgstr "" -#: src/settings/ai/shared/index.tsx:309 +#: src/settings/ai/shared/index.tsx:310 msgid "Enter your API key (optional)" msgstr "" @@ -861,6 +865,10 @@ msgstr "" msgid "LinkedIn" msgstr "" +#: src/settings/ai/stt/select.tsx:690 +msgid "Live" +msgstr "" + #: src/calendar/components/calendar-selection.tsx:76 msgid "Loading calendars..." msgstr "" @@ -948,7 +956,7 @@ msgid "Microphone detection" msgstr "" #: src/settings/ai/llm/select.tsx:197 -#: src/settings/ai/stt/select.tsx:160 +#: src/settings/ai/stt/select.tsx:166 msgid "Model being used" msgstr "" @@ -1236,7 +1244,7 @@ msgstr "" msgid "Previous match" msgstr "" -#: src/settings/ai/stt/select.tsx:196 +#: src/settings/ai/stt/select.tsx:202 msgid "Pro" msgstr "" @@ -1248,10 +1256,6 @@ msgstr "" msgid "Ready to go" msgstr "" -#: src/settings/ai/stt/select.tsx:677 -msgid "Realtime" -msgstr "" - #: src/shared/open-note-dialog.tsx:251 msgid "Recent" msgstr "" @@ -1362,6 +1366,11 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/ai/shared/index.tsx:348 +#: src/settings/ai/stt/select.tsx:697 +msgid "Runs after the recording finishes, not during the meeting." +msgstr "" + #: src/settings/personalization/index.tsx:93 msgid "Save" msgstr "" @@ -1434,7 +1443,7 @@ msgid "Select a different folder" msgstr "" #: src/settings/ai/shared/model-combobox.tsx:165 -#: src/settings/ai/stt/select.tsx:238 +#: src/settings/ai/stt/select.tsx:244 msgid "Select a model" msgstr "" @@ -1443,7 +1452,7 @@ msgid "Select a person to view details" msgstr "" #: src/settings/ai/llm/select.tsx:206 -#: src/settings/ai/stt/select.tsx:169 +#: src/settings/ai/stt/select.tsx:175 msgid "Select a provider" msgstr "" @@ -1526,9 +1535,9 @@ msgstr "" #: src/settings/general/app-settings.tsx:101 msgid "Show floating bar" -msgstr "Bonisa ibha entantayo" +msgstr "" -#: src/settings/ai/stt/select.tsx:728 +#: src/settings/ai/stt/select.tsx:752 #: src/sidebar/timeline/item.tsx:605 msgid "Show in Finder" msgstr "" @@ -1833,11 +1842,11 @@ msgid "Upgrade to Pro for {0}" msgstr "" #: src/settings/ai/llm/select.tsx:235 -#: src/settings/ai/stt/select.tsx:202 +#: src/settings/ai/stt/select.tsx:208 msgid "Upgrade to Pro to use this provider." msgstr "" -#: src/settings/ai/stt/select.tsx:640 +#: src/settings/ai/stt/select.tsx:648 msgid "Upgrade to use" msgstr "" diff --git a/apps/desktop/src/i18n/locales/zu/messages.ts b/apps/desktop/src/i18n/locales/zu/messages.ts index 15dda233bb..a4a4a83443 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\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ulimi oluyinhloko\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engeza ulimi\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4iQdRH\":[\"Realtime\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala uma umhlangano uqala\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ulimi oluyinhloko luhlala lufakiwe ekulotshweni\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Engeza ulimi olukhulunywayo\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Sesha ulimi...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ulimi Nesifunda\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Yabelana ngedatha yokusetshenziswa\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Idatha\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Uhlelo lokusebenza\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Qala ngokuzenzakalelayo ukulalela lapho inothi elisekelwa umcimbi lifinyelela isikhathi salo sokuqala esihleliwe.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Yeka ukulalela ngokuzenzakalela uma uhlelo lokusebenza lomhlangano lukhulula imakrofoni.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Bonisa isilawuli esintantayo esihlangene ngenkathi ulalele.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Izilimi ezengeziwe ezikhulunywayo\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ihlala ilungile ngaphandle kokuyiqalisa mathupha.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Qala i-Anarlog ekungeneni ngemvume\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ulimi lokufingqa, izingxoxo, nezimpendulo ezikhiqizwe yi-AI\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Yima lapho umhlangano uphela\"],\"jzmguI\":[\"Imihlangano\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Azikho izilimi ezifanayo ezitholiwe\"],\"k_sb6z\":[\"Khetha ulimi\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Bonisa ibha entantayo\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Thumela izibalo zokusetshenziswa ezingaziwa ukuze usize ukuthuthukisa i-Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"rsx3xA\":[\"Batch\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"-8PP0T\":[\"Match case\"],\"-K0AvT\":[\"Disconnect\"],\"-MqXzq\":[\"Connect GitHub for private repos.\"],\"-aQSba\":[\"Remove repository\"],\"-nqVyF\":[\"Manage billing\"],\"-roxOq\":[\"Required to capture other participants' voices in meetings\"],\"0L47q7\":[\"Ulimi oluyinhloko\"],\"0wdd7X\":[\"Join\"],\"18pndL\":[\"Save audio after meeting\"],\"1DBGsz\":[\"Notes\"],\"1JTCe_\":[\"Sign in to unlock powerful AI models, sync across devices, and personalization.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1hMWR6\":[\"Create account\"],\"1iY5xv\":[\"Microphone\"],\"1njn7W\":[\"Light\"],\"1wdDm9\":[\"Engeza ulimi\"],\"1wdjme\":[\"People\"],\"27z-FV\":[\"Job Title\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2POOFK\":[\"Free\"],\"2oJEzG\":[\"No related notes found\"],\"2xC_at\":[\"If the browser does not reopen Anarlog, use the paste-link fallback in the sign-in instruction window.\"],\"32f94m\":[\"Permissions granted\"],\"39ZmJ0\":[\"Expire recordings after one day\"],\"3Ib6FN\":[\"Move down\"],\"3KOs-z\":[\"Search installed apps to exclude them. Click an excluded app to include it again.\"],\"3MATR5\":[\"No matching people\"],\"3SZK43\":[\"Failed to load integration status\"],\"3Siwmw\":[\"More options\"],\"3fPjUY\":[\"Pro\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"40Gx0U\":[\"Timezone\"],\"4DDDTH\":[\"Want to use with your vault?\"],\"4JKocE\":[\"Configure Providers\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4b3oEV\":[\"Content\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Qala uma umhlangano uqala\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"65dxv8\":[\"Send email\"],\"6BjJ-_\":[\"Open calendar\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6PZ_8n\":[\"Ulimi oluyinhloko luhlala lufakiwe ekulotshweni\"],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6bnoVc\":[\"Plan & Billing\"],\"6f8Vle\":[\"Required to detect meeting apps and sync mute status\"],\"6gRgw8\":[\"Retry\"],\"6hxDH1\":[\"Connect Google Calendar\"],\"6yQlea\":[\"comment\"],\"721JDQ\":[\"Eligible for free trial\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"8U287n\":[\"Template actions\"],\"8f1ev9\":[\"Search or add company\"],\"8gtQoG\":[\"Section actions\"],\"8m6Z05\":[\"Search installed apps...\"],\"92_aeS\":[\"In \",[\"totalSeconds\"],\" second\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9UQ730\":[\"Clone\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9nBmH9\":[\"comments\"],\"9qzvD_\":[\"Note breadcrumb\"],\"A5hiCy\":[\"Create template\"],\"ADZ1Xl\":[\"Engeza ulimi olukhulunywayo\"],\"AD_Tkk\":[\"You can\"],\"AYiE9H\":[\"Tip: The Anarlog team loves our users!\"],\"Aay0Ha\":[\"Enter a valid date and time\"],\"AeXO77\":[\"Account\"],\"AjVXBS\":[\"Calendar\"],\"AnNF5e\":[\"Accessibility\"],\"AyvXEo\":[\"Ask anything\"],\"BI1JC9\":[\"Work on this task\"],\"BgiToP\":[\"Sesha ulimi...\"],\"Br_GXQ\":[\"Paste the browser URL here if the browser button did not reopen Anarlog.\"],\"BrrIs8\":[\"Storage\"],\"BzEFor\":[\"or\"],\"BzhAag\":[\"Failed to load issue\"],\"C0rVIc\":[\"Ulimi Nesifunda\"],\"C1DCFO\":[\"Having trouble?\"],\"CCTop_\":[\"Recent\"],\"CWoc3c\":[\"For enabled notifications\"],\"CigtTr\":[\"Expire recordings after three days\"],\"Cmv16T\":[\"Sort options\"],\"Czn04i\":[\"Add repository\"],\"D-NlUC\":[\"System\"],\"D87pha\":[\"Closed\"],\"DBC3t5\":[\"Sunday\"],\"DDziIo\":[\"Transcript\"],\"DY1Qey\":[\"Edit date\"],\"DZe_N-\":[\"Signing out...\"],\"DdJIit\":[\"System audio\"],\"Dg0CeH\":[\"Complete your purchase\"],\"DhTbJv\":[\"Human\"],\"Die6ER\":[\"Allow access\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF2EU9\":[\"Deleting...\"],\"EF4MSB\":[\"Continuing without trial\"],\"EcDJtN\":[\"Show tray icon\"],\"EcfTE6\":[\"Filter synced items by \",[\"0\"],\".\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"Ef7StM\":[\"Unknown\"],\"EgLL7H\":[\"Upgrade to connect\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjYvWC\":[\"Login with existing account\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FZtBeR\":[\"Enable \",[\"0\"]],\"F_VKbT\":[\"Find a note...\"],\"Fj7Zd1\":[\"Select day\"],\"G4Pd27\":[\"Yabelana ngedatha yokusetshenziswa\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GhYKXY\":[\"After recording\"],\"GiNWxP\":[\"Session note tabs\"],\"GkKYLr\":[\"Finish checkout in your browser, then return to Anarlog.\"],\"GnG6Oy\":[\"members\"],\"Gq4EZz\":[\"The app will restart after onboarding to apply your storage changes\"],\"Gzw2pq\":[\"Intelligence\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"HAyup0\":[\"Folder is not empty. Uncheck Move to use it as-is, or pick a dedicated empty folder (for example \\\"meetings\\\") for a full migration.\"],\"HKH-W-\":[\"Idatha\"],\"HuAiqe\":[\"Keep Anarlog available from the menu bar.\"],\"Hx7V9r\":[\"How long the mic must be active before triggering\"],\"HxnOKF\":[\"Select an organization to view details\"],\"IHs4tx\":[\"AI-generated summary of all interactions and notes with this contact will appear here. This will synthesize key discussion points, action items, and relationship context across all meetings and notes.\"],\"IelE1h\":[\"Upgrade to Pro\"],\"In2v7W\":[\"Z to A\"],\"JFMXRL\":[\"Choose light, dark, or match your system setting.\"],\"JFuqhK\":[\"Something went wrong while generating the summary.\"],\"JLGoz8\":[\"Anarlog needs access to your microphone and system audio to record and transcribe your meetings\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LB3s-1\":[\"Change content location\"],\"LMUw1U\":[\"Uhlelo lokusebenza\"],\"Lknb9Z\":[\"No recent chats\"],\"MEIAzV\":[\"Unnamed\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MRv3Mn\":[\"In \",[\"minutes\"],\" minutes\"],\"MXFksL\":[\"Match whole word\"],\"MZHPuB\":[\"Participants\"],\"MZbQHL\":[\"No results found.\"],\"MsvOqZ\":[\"Qala ngokuzenzakalelayo ukulalela lapho inothi elisekelwa umcimbi lifinyelela isikhathi salo sokuqala esihleliwe.\"],\"MtIGpK\":[\"Connect your integration\"],\"NOKb5g\":[\"Required to sync Apple Calendar events into Anarlog\"],\"NbOWt_\":[\"Untitled Note\"],\"Nfl7JX\":[\"You need to configure the API key and base URL for your language model provider\"],\"NrbyuQ\":[\"You're on the <0>\",[\"planLabel\"],\" plan\"],\"NuKR0h\":[\"Others\"],\"NvM0gu\":[\"Loading models...\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O2UpM1\":[\"Browse\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O9vxRW\":[\"Ask & search about anything, or be creative!\"],\"OAj4Fv\":[\"Storage configured\"],\"OG_ZPr\":[\"Favorite template\"],\"OL7Cmu\":[\"Memos\"],\"O_7I0o\":[\"Select...\"],\"OfhWJH\":[\"Reset\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P89I5W\":[\"Required to record your voice during meetings and calls\"],\"P9Cyl9\":[\"(default)\"],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PPcets\":[\"Set as default\"],\"PSWgMt\":[\"No models available.\"],\"PcCC_8\":[\"Close changelog\"],\"Pqpcvm\":[\"Yeka ukulalela ngokuzenzakalela uma uhlelo lokusebenza lomhlangano lukhulula imakrofoni.\"],\"Q3vyS6\":[\"Names, jargon, and product terms to prefer.\"],\"Q4ZJXU\":[\"Reopen sign-in page\"],\"QAsUyW\":[[\"0\"],\" opened on\"],\"QL-UdY\":[\"Choose storage location\"],\"QWdKwH\":[\"Move\"],\"Qg_cAb\":[\"Select appearance\"],\"QjFXtL\":[\"Refresh billing status\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R7v4Oy\":[\"You need to configure the base URL for your language model provider\"],\"SAqw0m\":[\"Keep recordings until manually deleted\"],\"SB1AvQ\":[\"Request \",[\"0\"],\" permission\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"Sdv6pQ\":[\"Chat history\"],\"SgTB72\":[\"Get notified 5 minutes before calendar events start\"],\"SiUUCS\":[\"Next match\"],\"So2lVb\":[\"What's new in \",[\"version\"],\"?\"],\"SsTRuq\":[\"Delete All Recurring Events\"],\"T-xShk\":[\"See all templates\"],\"TYVgbP\":[\"Include\"],\"TdmpIn\":[\"Moving existing data requires an empty folder. Uncheck Move to switch locations without migrating files.\"],\"TgFpwD\":[\"Applying...\"],\"TlLW78\":[\"Add \\\"\",[\"0\"],\"\\\"\"],\"TvBXG7\":[\"Search contacts...\"],\"Tz0i8g\":[\"Settings\"],\"UF6vwM\":[\"Insert below\"],\"UtaHBr\":[\"Sign in for Lite\"],\"UubP6F\":[\"Configure this provider to use it.\"],\"V8yTm6\":[\"Clear search\"],\"VGYp2r\":[\"Apply to all\"],\"VPaARk\":[\"No community templates available\"],\"VSpaMM\":[\"Upgrade for private repos.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VrH1k-\":[\"Dictionary\"],\"VrNltZ\":[\"Personalization\"],\"VvK24N\":[\"Show Anarlog in the Dock and app switcher.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"Weq9zb\":[\"General\"],\"Wu4354\":[\"Bonisa isilawuli esintantayo esihlangene ngenkathi ulalele.\"],\"Wzd7aF\":[\"You need to configure a language model to summarize this meeting\"],\"XDCX3x\":[\"permission panel.\"],\"XLYh-i\":[\"Choose where Anarlog should store data. (notes, settings, etc)\"],\"XpeyOB\":[\"Request,\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"YIix5Y\":[\"Search...\"],\"Y_3yKT\":[\"Open in New Tab\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YoPg7o\":[\"Replace with...\"],\"Yp-Hi_\":[\"Open settings\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7qvtD\":[\"Select a different folder\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZH5Cyo\":[\"Finalizing\"],\"ZILhSr\":[\"System audio enabled\"],\"ZK8Kpc\":[\"In \",[\"minutes\"],\" minute\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_I7TDl\":[\"Ready to go\"],\"_NJw4Q\":[\"Compare Free, Lite, and Pro before you sign in.\"],\"_dg7UE\":[\"Stores app-wide settings and configurations\"],\"_rTz0M\":[\"Audio\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aOlPqa\":[\"Automatically detect when a meeting starts based on microphone activity.\"],\"aT3jZX\":[\"Select timezone\"],\"aZkbTt\":[\"Open calendar account actions\"],\"ahAAMb\":[\"Don't show notifications when Do-Not-Disturb is enabled on your system\"],\"aj0wlU\":[\"Show the live transcript overlay by default while listening.\"],\"awIyH2\":[\"Open \",[\"0\"],\" settings\"],\"bDB_fr\":[\"Welcome to Anarlog\"],\"bPz5uu\":[\"Search timezone...\"],\"bQjTS0\":[\"Izilimi ezengeziwe ezikhulunywayo\"],\"bZDZsh\":[\"Go to recent\"],\"bgYlW5\":[\"No models ready to use.\"],\"bkVeDl\":[\"Ihlala ilungile ngaphandle kokuyiqalisa mathupha.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"bow0_o\":[\"Join \",[\"name\"]],\"c8f_uU\":[\"Week starts on\"],\"cH5kXP\":[\"Now\"],\"cO84uN\":[\"Sign in for Pro\"],\"cZbx3v\":[\"Reopen checkout page\"],\"cnGeoo\":[\"Delete\"],\"crwali\":[\"Reminders\"],\"cuCCGZ\":[\"Add organization\"],\"cvnyIh\":[\"You need to select a model to summarize this meeting\"],\"d-F6q9\":[\"Created\"],\"dBQc5K\":[\"Merged\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dUCJry\":[\"Newest\"],\"dXoieq\":[\"Summary\"],\"dsJDgK\":[\"Submit callback URL\"],\"dtGuCw\":[\"Show live transcript overlay\"],\"eJOEBy\":[\"Exporting...\"],\"eUo5wp\":[\"Transcription\"],\"etUJEW\":[\"Qala i-Anarlog ekungeneni ngemvume\"],\"euc6Ns\":[\"Duplicate\"],\"fcWrnU\":[\"Sign out\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"g3UbbO\":[\"Date and time are required\"],\"g8cdmM\":[\"Allow system audio access\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gVfVfe\":[\"Contacts\"],\"gbIwAj\":[\"Delete recording\"],\"gggTBm\":[\"LinkedIn\"],\"goT0oh\":[\"Select a person to view details\"],\"gphxoA\":[\"1 day\"],\"hE3J-E\":[\"Delete This Event\"],\"hIQkLb\":[\"New chat\"],\"hdSv4p\":[\"<0>Language model is needed to make Anarlog summarize and chat about your conversations.\"],\"hn__ZK\":[\"Organization name\"],\"hpaM82\":[\"<0>Transcription model is needed to make Anarlog listen to your conversations.\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hty0d5\":[\"Monday\"],\"iAL9tI\":[\"Configure\"],\"iBYy7Q\":[\"Ulimi lokufingqa, izingxoxo, nezimpendulo ezikhiqizwe yi-AI\"],\"iDNBZe\":[\"Izaziso\"],\"iH8pgl\":[\"Back\"],\"iQSmtw\":[\"Override the timezone used for the sidebar timeline\"],\"iTylMl\":[\"Templates\"],\"iUekqI\":[\"In \",[\"totalSeconds\"],\" seconds\"],\"iVDELR\":[\"Go to next section\"],\"iWpEwy\":[\"Go home\"],\"ict6gq\":[\"Loading calendars...\"],\"igwSju\":[\"Expire recordings after one month\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iyoCCY\":[\"Select a model\"],\"jB1XkF\":[\"Stores your notes, recordings, and session data\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jeOkoK\":[\"Upgrade to use\"],\"jzl8IQ\":[\"Yima lapho umhlangano uphela\"],\"jzmguI\":[\"Imihlangano\"],\"k8BJbJ\":[\"No notes found.\"],\"kPOw9O\":[\"Copy message\"],\"kUWjsV\":[\"Azikho izilimi ezifanayo ezitholiwe\"],\"k_sb6z\":[\"Khetha ulimi\"],\"keSFbe\":[\"Your Anarlog plan has expired. Configure another language model or renew your plan\"],\"kjAL4v\":[\"Ticket\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"l9vi1F\":[\"Search people\"],\"lQeGNv\":[\"Stop response\"],\"lWy5a1\":[\"Plans\"],\"lhkaAC\":[\"Trial\"],\"lkz6PL\":[\"Duration\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m8sYJa\":[\"Trial activated - 14 days of Pro\"],\"m9BhjD\":[\"You have an active plan\"],\"mHVPm5\":[\"Reconnect required\"],\"mMUI_L\":[\"No people\"],\"mXk99g\":[\"Starting your trial...\"],\"mZ2BZW\":[\"Refresh calendars\"],\"m_W9gE\":[[\"trialDaysRemaining\"],\" day left\"],\"mfCE52\":[\"commented on\"],\"mzI_c-\":[\"Download\"],\"n9HqvT\":[\"No items today\"],\"nBdqGI\":[\"Upload audio\"],\"naNXrZ\":[\"You need to configure the API key for your language model provider\"],\"nsi5FV\":[\"No description provided.\"],\"o-XJ9D\":[\"Change\"],\"oE8Gmu\":[\"Meeting\"],\"oGcLFq\":[\"A to Z\"],\"oPh47P\":[\"Upgrade to Pro to use this provider.\"],\"olrNOE\":[\"Your Account\"],\"oqB2ez\":[\"Previous match\"],\"otMZBX\":[\"Enhance contact \",[\"label\"]],\"p8Kg0F\":[\"Delete Selected (\",[\"sessionCount\"],\")\"],\"pBLnuq\":[\"Get started for free\"],\"pDOhFO\":[\"Only public repositories are supported.\"],\"pECIKL\":[\"Search templates...\"],\"pHVkqA\":[\"Start Recording\"],\"pVpLbt\":[\"Add person\"],\"pYIea1\":[\"Delete Note\"],\"pi1oME\":[\"Send message\"],\"pjamJn\":[\"Apply and Restart\"],\"pqZJT2\":[\"Close chat\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qRSwae\":[\"Show floating bar\"],\"qfw0P1\":[\"Sign in to unlock cloud transcription and AI models, plus Pro features like sharing.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"rARVkA\":[\"Complete the sign-in flow in your browser, then come back here if Anarlog does not reconnect automatically.\"],\"rBX6I4\":[\"Microphone detection\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rOOntd\":[\"Pro trial\"],\"raSeup\":[\"Connect calendar\"],\"rcFMmv\":[\"Thumela izibalo zokusetshenziswa ezingaziwa ukuze usize ukuthuthukisa i-Anarlog.\"],\"rhNyWi\":[\"Related Notes\"],\"s36GUv\":[\"Allow microphone access\"],\"s_KWAy\":[\"Reopen in browser\"],\"saLM1F\":[\"Anarlog can hear others\"],\"sf8lHS\":[\"Session title\"],\"srRMnJ\":[\"Customize\"],\"sxkWRg\":[\"Advanced\"],\"t3gf2s\":[\"Show in Finder\"],\"t9x9vM\":[\"Float chat\"],\"tDV36S\":[\"Save date\"],\"tZ1EWk\":[\"Where your notes and recordings are stored\"],\"tdQOID\":[\"Disconnect private repo access.\"],\"tfDRzk\":[\"Save\"],\"uLh6J1\":[\"No calendars found\"],\"ucgZ0o\":[\"Organization\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vNPhPR\":[\"Open Anarlog\"],\"vQZK84\":[\"Checking folder...\"],\"veBMef\":[\"Expire recordings after one week\"],\"voMgY-\":[\"1 month\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"wF2wqQ\":[\"Unknown date\"],\"wSqV7o\":[\"Do not keep recordings after processing\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wckWOP\":[\"Manage\"],\"wja8aL\":[\"Untitled\"],\"wm1sei\":[\"New Note\"],\"wshevC\":[\"Assignees:\"],\"xDhKCH\":[\"Finish sign-in\"],\"xGVfLh\":[\"Continue\"],\"xGjoEy\":[\"Stop listening\"],\"xIBriL\":[\"Go to previous section\"],\"xQ3YwV\":[\"First day of the week in the calendar view\"],\"xvN1F8\":[\"Replace repository\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRnk5W\":[\"API Key\"],\"y_Jg1h\":[[\"trialDaysRemaining\"],\" days left\"],\"ygCKqB\":[\"Stop\"],\"ygUw8s\":[\"Replace all\"],\"yz7wBu\":[\"Close\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zOAm7M\":[\"Upgrade to Pro for \",[\"0\"]],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zaufLc\":[\"You need to sign in to use Anarlog's language model\"],\"zi4E88\":[\"existing data to new location\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/settings/ai/shared/index.tsx b/apps/desktop/src/settings/ai/shared/index.tsx index 183d7a6ac1..0e7018e54b 100644 --- a/apps/desktop/src/settings/ai/shared/index.tsx +++ b/apps/desktop/src/settings/ai/shared/index.tsx @@ -17,6 +17,11 @@ import { InputGroup, InputGroupInput, } from "@hypr/ui/components/ui/input-group"; +import { + Tooltip, + TooltipContent, + TooltipTrigger, +} from "@hypr/ui/components/ui/tooltip"; import { cn } from "@hypr/utils"; import { @@ -213,11 +218,7 @@ export function NonHyprProviderCard({
{config.icon} {config.displayName} - {config.badge && ( - - {config.badge} - - )} + {config.badge && }
+ {badge} + + ); + + if (!isBatchOnly) { + return badgeNode; + } + + return ( + + {badgeNode} + + + Runs after the recording finishes, not during the meeting. + + + + ); +} + const streamdownComponents = { ul: (props: React.HTMLAttributes) => { return ( diff --git a/apps/desktop/src/settings/ai/stt/select.tsx b/apps/desktop/src/settings/ai/stt/select.tsx index c10f98be5d..cee8e99d0b 100644 --- a/apps/desktop/src/settings/ai/stt/select.tsx +++ b/apps/desktop/src/settings/ai/stt/select.tsx @@ -24,6 +24,11 @@ import { SelectTrigger, SelectValue, } from "@hypr/ui/components/ui/select"; +import { + Tooltip, + TooltipContent, + TooltipTrigger, +} from "@hypr/ui/components/ui/tooltip"; import { cn } from "@hypr/utils"; import { useSttSettings } from "./context"; @@ -669,21 +674,32 @@ function ModelModeBadge({ mode }: { mode?: ModelEntry["mode"] }) { return null; } + const isRealtime = mode === "realtime"; + return ( - - {mode === "realtime" ? ( - Live - ) : ( - After recording - )} - + + + + {isRealtime ? Live : After recording} + + + + {isRealtime ? ( + Can transcribe while the meeting is happening. + ) : ( + + Runs after the recording finishes, not during the meeting. + + )} + + ); }